Source: ARCore/libs.js

/**
 * Allows apps to use Len's built-in libraries.
 * @name Lens.Libs
 * @namespace
 */
define(["lib/jquery", "lib/underscore", "lib/pixastic", "lib/sylvester"],
function($,            _,                Pixastic,       Sylvester) {

    "use strict";

    var Libs = /** @lends Lens.Libs */ {
        /**
         * jQuery: A general-purpose Javascript library. http://jquery.com/
         */
        jQuery: $,

        /**
         * Underscore: A utility-belt library for functional programming.
         * http://underscorejs.org/
         */
        Underscore: _,

        /**
         * Pixastic: Javascript image processing. http://www.pixastic.com/
         */
        Pixastic: Pixastic,

        /**
         * Sylvester: Vector and matrix math. http://sylvester.jcoglan.com/
         */
        Sylvester: Sylvester
    };

    Lens._addMember(Libs, "Libs");

    return Libs;
});