├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── bower_components ├── jquery │ ├── .bower.json │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ ├── sizzle │ │ ├── LICENSE.txt │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ └── src │ │ ├── .jshintrc │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── DOMEval.js │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ ├── support.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ ├── accepts.js │ │ ├── support.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deferred │ │ └── exceptionHook.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ ├── animatedSelector.js │ │ └── support.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── createSafeFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── nodeNames.js │ │ │ ├── rcheckableType.js │ │ │ ├── rleadingWhitespace.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── support.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── deletedIds.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js ├── matter-js │ ├── .bower.json │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gulpfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── build │ │ ├── matter.js │ │ └── matter.min.js │ ├── demo │ │ ├── css │ │ │ └── style.css │ │ ├── img │ │ │ ├── background.png │ │ │ ├── ball.png │ │ │ ├── block-2.png │ │ │ ├── block.png │ │ │ ├── box.png │ │ │ ├── rock.png │ │ │ └── wall-bg.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── Demo.js │ │ │ ├── DemoMobile.js │ │ │ └── lib │ │ │ │ ├── decomp.js │ │ │ │ ├── matter-0.8.0.js │ │ │ │ ├── matter-tools │ │ │ │ ├── 32px.png │ │ │ │ ├── gif │ │ │ │ │ ├── gif.js │ │ │ │ │ ├── gif.js.map │ │ │ │ │ ├── gif.worker.js │ │ │ │ │ └── gif.worker.js.map │ │ │ │ ├── jquery-1.11.0.min.js │ │ │ │ ├── matter-tools-dev.js │ │ │ │ └── matter-tools.css │ │ │ │ ├── pathseg.js │ │ │ │ ├── pixi.js │ │ │ │ └── pixi.js.map │ │ ├── mobile.html │ │ └── svg │ │ │ ├── iconmonstr-check-mark-8-icon.svg │ │ │ ├── iconmonstr-direction-4-icon.svg │ │ │ ├── iconmonstr-paperclip-2-icon.svg │ │ │ ├── iconmonstr-puzzle-icon.svg │ │ │ ├── iconmonstr-user-icon.svg │ │ │ ├── svg.svg │ │ │ └── terrain.svg │ ├── examples │ │ ├── airFriction.js │ │ ├── avalanche.js │ │ ├── ballPool.js │ │ ├── beachBalls.js │ │ ├── bridge.js │ │ ├── broadphase.js │ │ ├── car.js │ │ ├── catapult.js │ │ ├── chains.js │ │ ├── circleStack.js │ │ ├── cloth.js │ │ ├── collisionFiltering.js │ │ ├── compositeManipulation.js │ │ ├── compound.js │ │ ├── compoundStack.js │ │ ├── concave.js │ │ ├── engine.js │ │ ├── events.js │ │ ├── friction.js │ │ ├── gravity.js │ │ ├── manipulation.js │ │ ├── mixed.js │ │ ├── mixedSolid.js │ │ ├── newtonsCradle.js │ │ ├── pyramid.js │ │ ├── raycasting.js │ │ ├── restitution.js │ │ ├── rounded.js │ │ ├── sleeping.js │ │ ├── slingshot.js │ │ ├── softBody.js │ │ ├── sprites.js │ │ ├── stack.js │ │ ├── staticFriction.js │ │ ├── stress.js │ │ ├── stress2.js │ │ ├── svg.js │ │ ├── terrain.js │ │ ├── timescale.js │ │ ├── views.js │ │ └── wreckingBall.js │ ├── package.json │ └── src │ │ ├── body │ │ ├── Body.js │ │ ├── Composite.js │ │ └── World.js │ │ ├── collision │ │ ├── Contact.js │ │ ├── Detector.js │ │ ├── Grid.js │ │ ├── Pair.js │ │ ├── Pairs.js │ │ ├── Query.js │ │ ├── Resolver.js │ │ └── SAT.js │ │ ├── constraint │ │ ├── Constraint.js │ │ └── MouseConstraint.js │ │ ├── core │ │ ├── Common.js │ │ ├── Engine.js │ │ ├── Events.js │ │ ├── Metrics.js │ │ ├── Mouse.js │ │ ├── Runner.js │ │ └── Sleeping.js │ │ ├── factory │ │ ├── Bodies.js │ │ └── Composites.js │ │ ├── geometry │ │ ├── Axes.js │ │ ├── Bounds.js │ │ ├── Svg.js │ │ ├── Vector.js │ │ └── Vertices.js │ │ ├── module │ │ ├── license.js │ │ └── main.js │ │ └── render │ │ ├── Render.js │ │ └── RenderPixi.js └── paper │ ├── .bower.json │ ├── .gitignore │ ├── .gitmodules │ ├── .jshintrc │ ├── .tm_properties │ ├── AUTHORS.md │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── component.json │ ├── dist │ ├── .gitignore │ ├── paper-core.js │ ├── paper-core.min.js │ ├── paper-full.js │ └── paper-full.min.js │ ├── examples │ ├── Animated │ │ ├── AnimatedStar.html │ │ ├── BooleanOperations.html │ │ ├── CandyCrash.html │ │ ├── Extruded.html │ │ ├── Lines.html │ │ ├── Smoothing.html │ │ ├── Space.html │ │ └── SpaceUsingShapes.html │ ├── Games │ │ └── Paperoids.html │ ├── JSON │ │ ├── Circle Testing.html │ │ ├── Compound Path.html │ │ ├── Empty Path Testing.html │ │ ├── Gradients.html │ │ ├── Group Transform.html │ │ ├── Line Testing.html │ │ ├── Random Path Testing.html │ │ ├── Raster.html │ │ ├── Rect and Attribute Testing.html │ │ ├── Rotated Primitives.html │ │ ├── Selection.html │ │ ├── Shapes.html │ │ ├── Symbols.html │ │ ├── Text Testing.html │ │ ├── Tiger.html │ │ ├── Transform Test 1.html │ │ └── Transform Test 2.html │ ├── Node.js │ │ ├── AnimatedStar.js │ │ ├── BooleanOperations.js │ │ ├── JSONtoPDF.js │ │ ├── Raster.js │ │ ├── RemoteRaster.js │ │ ├── SVGExport.js │ │ ├── SVGImport.js │ │ ├── Tadpoles.js │ │ ├── Tadpoles.pjs │ │ ├── in.json │ │ └── in.svg │ ├── Paperjs.org │ │ ├── BouncingBalls.html │ │ ├── Chain.html │ │ ├── DivisionRaster.html │ │ ├── FutureSplash.html │ │ ├── HitTesting.html │ │ ├── InteractiveTiger.html │ │ ├── MetaBalls.html │ │ ├── NyanRainbow.html │ │ ├── PathIntersections.html │ │ ├── Qbertify.html │ │ ├── RadialRainbows.html │ │ ├── RoundedRectangles.html │ │ ├── SatieLikedToDraw.html │ │ ├── Simplify.html │ │ ├── SpiralRaster.html │ │ ├── Tadpoles.html │ │ └── Voronoi.html │ ├── Rasters │ │ ├── PhyllotaxisRaster.html │ │ ├── Raster.html │ │ └── RotationRaster.html │ ├── SVG Export │ │ ├── Circle Testing.html │ │ ├── Clipping.html │ │ ├── Compound Path.html │ │ ├── Empty Path Testing.html │ │ ├── Gradients.html │ │ ├── Group Transform.html │ │ ├── Line Testing.html │ │ ├── Random Path Testing.html │ │ ├── Raster.html │ │ ├── Rect and Attribute Testing.html │ │ ├── Rotated Primitives.html │ │ ├── Shapes.html │ │ ├── Symbols.html │ │ ├── Text Testing.html │ │ ├── Tiger.html │ │ ├── Transform Test 1.html │ │ └── Transform Test 2.html │ ├── SVG Import │ │ ├── Arcs.html │ │ ├── Butterfly.html │ │ ├── Circle and Ellipse Testing.html │ │ ├── Clipping.html │ │ ├── From File.html │ │ ├── Gradient.html │ │ ├── Gradients.html │ │ ├── Inkscape Pivot.html │ │ ├── Inkscape.html │ │ ├── Line Testing.html │ │ ├── MoreGradients.html │ │ ├── Multiple Paths Test 1.html │ │ ├── Multiple Paths Test 2.html │ │ ├── Nested Groups Test.html │ │ ├── Polybezier.html │ │ ├── Rect Testing.html │ │ ├── Symbols.html │ │ ├── Testing.html │ │ ├── Text Testing.html │ │ ├── Tiger.html │ │ ├── Transform Testing.html │ │ └── Viewbox.html │ ├── Scripts │ │ ├── Arcs.html │ │ ├── BlendModes.html │ │ ├── BooleanOperations.html │ │ ├── CompoundPath.html │ │ ├── CurveTimeParameterization.html │ │ ├── HslColor.html │ │ ├── PathStructure.html │ │ ├── Resize.html │ │ ├── RoundRectangle.html │ │ ├── Shapes.html │ │ ├── StrokeBounds.html │ │ └── StrokeScaling.html │ ├── Tools │ │ ├── BezierTool.html │ │ ├── Circles.html │ │ ├── Clouds.html │ │ ├── DrippingBrush.html │ │ ├── FancyBrush.html │ │ ├── Grid.html │ │ ├── MultiLines.html │ │ ├── PathEditing.html │ │ ├── SquareRounded.html │ │ ├── Stars.html │ │ ├── Vektor.html │ │ ├── Wave.html │ │ └── WormFarm.html │ └── css │ │ └── style.css │ └── gulpfile.js ├── index.html ├── js ├── decomp.js └── main.js └── style └── main.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /bower_components/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /bower_components/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/README.md -------------------------------------------------------------------------------- /bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /bower_components/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/.jshintrc -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/data/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/effects/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/event/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /bower_components/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/exports/global.js -------------------------------------------------------------------------------- /bower_components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/intro.js -------------------------------------------------------------------------------- /bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/createSafeFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/createSafeFragment.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/nodeNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/var/nodeNames.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/var/rcheckableType.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rleadingWhitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/var/rleadingWhitespace.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/selector-native.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /bower_components/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /bower_components/matter-js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/.bower.json -------------------------------------------------------------------------------- /bower_components/matter-js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/CHANGELOG.md -------------------------------------------------------------------------------- /bower_components/matter-js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/CONTRIBUTING.md -------------------------------------------------------------------------------- /bower_components/matter-js/Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/Gulpfile.js -------------------------------------------------------------------------------- /bower_components/matter-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/LICENSE -------------------------------------------------------------------------------- /bower_components/matter-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/README.md -------------------------------------------------------------------------------- /bower_components/matter-js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/bower.json -------------------------------------------------------------------------------- /bower_components/matter-js/build/matter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/build/matter.js -------------------------------------------------------------------------------- /bower_components/matter-js/build/matter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/build/matter.min.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/css/style.css -------------------------------------------------------------------------------- /bower_components/matter-js/demo/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/img/background.png -------------------------------------------------------------------------------- /bower_components/matter-js/demo/img/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/img/ball.png -------------------------------------------------------------------------------- /bower_components/matter-js/demo/img/block-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/img/block-2.png -------------------------------------------------------------------------------- /bower_components/matter-js/demo/img/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/img/block.png -------------------------------------------------------------------------------- /bower_components/matter-js/demo/img/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/img/box.png -------------------------------------------------------------------------------- /bower_components/matter-js/demo/img/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/img/rock.png -------------------------------------------------------------------------------- /bower_components/matter-js/demo/img/wall-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/img/wall-bg.jpg -------------------------------------------------------------------------------- /bower_components/matter-js/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/index.html -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/Demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/Demo.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/DemoMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/DemoMobile.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/decomp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/decomp.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-0.8.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-0.8.0.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/32px.png -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.js.map -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.worker.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.worker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/gif/gif.worker.js.map -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/matter-tools-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/matter-tools-dev.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/matter-tools/matter-tools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/matter-tools/matter-tools.css -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/pathseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/pathseg.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/pixi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/pixi.js -------------------------------------------------------------------------------- /bower_components/matter-js/demo/js/lib/pixi.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/js/lib/pixi.js.map -------------------------------------------------------------------------------- /bower_components/matter-js/demo/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/mobile.html -------------------------------------------------------------------------------- /bower_components/matter-js/demo/svg/iconmonstr-check-mark-8-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/svg/iconmonstr-check-mark-8-icon.svg -------------------------------------------------------------------------------- /bower_components/matter-js/demo/svg/iconmonstr-direction-4-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/svg/iconmonstr-direction-4-icon.svg -------------------------------------------------------------------------------- /bower_components/matter-js/demo/svg/iconmonstr-paperclip-2-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/svg/iconmonstr-paperclip-2-icon.svg -------------------------------------------------------------------------------- /bower_components/matter-js/demo/svg/iconmonstr-puzzle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/svg/iconmonstr-puzzle-icon.svg -------------------------------------------------------------------------------- /bower_components/matter-js/demo/svg/iconmonstr-user-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/svg/iconmonstr-user-icon.svg -------------------------------------------------------------------------------- /bower_components/matter-js/demo/svg/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/svg/svg.svg -------------------------------------------------------------------------------- /bower_components/matter-js/demo/svg/terrain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/demo/svg/terrain.svg -------------------------------------------------------------------------------- /bower_components/matter-js/examples/airFriction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/airFriction.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/avalanche.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/avalanche.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/ballPool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/ballPool.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/beachBalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/beachBalls.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/bridge.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/broadphase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/broadphase.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/car.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/catapult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/catapult.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/chains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/chains.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/circleStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/circleStack.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/cloth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/cloth.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/collisionFiltering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/collisionFiltering.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/compositeManipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/compositeManipulation.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/compound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/compound.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/compoundStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/compoundStack.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/concave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/concave.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/engine.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/events.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/friction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/friction.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/gravity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/gravity.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/manipulation.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/mixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/mixed.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/mixedSolid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/mixedSolid.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/newtonsCradle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/newtonsCradle.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/pyramid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/pyramid.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/raycasting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/raycasting.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/restitution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/restitution.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/rounded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/rounded.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/sleeping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/sleeping.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/slingshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/slingshot.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/softBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/softBody.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/sprites.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/stack.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/staticFriction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/staticFriction.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/stress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/stress.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/stress2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/stress2.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/svg.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/terrain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/terrain.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/timescale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/timescale.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/views.js -------------------------------------------------------------------------------- /bower_components/matter-js/examples/wreckingBall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/examples/wreckingBall.js -------------------------------------------------------------------------------- /bower_components/matter-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/package.json -------------------------------------------------------------------------------- /bower_components/matter-js/src/body/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/body/Body.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/body/Composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/body/Composite.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/body/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/body/World.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/Contact.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/Detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/Detector.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/Grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/Grid.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/Pair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/Pair.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/Pairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/Pairs.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/Query.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/Resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/Resolver.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/collision/SAT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/collision/SAT.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/constraint/Constraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/constraint/Constraint.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/constraint/MouseConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/constraint/MouseConstraint.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/core/Common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/core/Common.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/core/Engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/core/Engine.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/core/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/core/Events.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/core/Metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/core/Metrics.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/core/Mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/core/Mouse.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/core/Runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/core/Runner.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/core/Sleeping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/core/Sleeping.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/factory/Bodies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/factory/Bodies.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/factory/Composites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/factory/Composites.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/geometry/Axes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/geometry/Axes.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/geometry/Bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/geometry/Bounds.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/geometry/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/geometry/Svg.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/geometry/Vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/geometry/Vector.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/geometry/Vertices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/geometry/Vertices.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/module/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/module/license.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/module/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/module/main.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/render/Render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/render/Render.js -------------------------------------------------------------------------------- /bower_components/matter-js/src/render/RenderPixi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/matter-js/src/render/RenderPixi.js -------------------------------------------------------------------------------- /bower_components/paper/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/.bower.json -------------------------------------------------------------------------------- /bower_components/paper/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /bower_components/paper/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/.gitmodules -------------------------------------------------------------------------------- /bower_components/paper/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/.jshintrc -------------------------------------------------------------------------------- /bower_components/paper/.tm_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/.tm_properties -------------------------------------------------------------------------------- /bower_components/paper/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/AUTHORS.md -------------------------------------------------------------------------------- /bower_components/paper/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/paper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/README.md -------------------------------------------------------------------------------- /bower_components/paper/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/bower.json -------------------------------------------------------------------------------- /bower_components/paper/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/component.json -------------------------------------------------------------------------------- /bower_components/paper/dist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/dist/.gitignore -------------------------------------------------------------------------------- /bower_components/paper/dist/paper-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/dist/paper-core.js -------------------------------------------------------------------------------- /bower_components/paper/dist/paper-core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/dist/paper-core.min.js -------------------------------------------------------------------------------- /bower_components/paper/dist/paper-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/dist/paper-full.js -------------------------------------------------------------------------------- /bower_components/paper/dist/paper-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/dist/paper-full.min.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/AnimatedStar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/AnimatedStar.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/BooleanOperations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/BooleanOperations.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/CandyCrash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/CandyCrash.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/Extruded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/Extruded.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/Lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/Lines.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/Smoothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/Smoothing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/Space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/Space.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Animated/SpaceUsingShapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Animated/SpaceUsingShapes.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Games/Paperoids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Games/Paperoids.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Circle Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Circle Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Compound Path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Compound Path.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Empty Path Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Empty Path Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Gradients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Gradients.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Group Transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Group Transform.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Line Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Line Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Random Path Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Random Path Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Raster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Raster.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Rect and Attribute Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Rect and Attribute Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Rotated Primitives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Rotated Primitives.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Selection.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Shapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Shapes.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Symbols.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Text Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Text Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Tiger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Tiger.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Transform Test 1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Transform Test 1.html -------------------------------------------------------------------------------- /bower_components/paper/examples/JSON/Transform Test 2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/JSON/Transform Test 2.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/AnimatedStar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/AnimatedStar.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/BooleanOperations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/BooleanOperations.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/JSONtoPDF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/JSONtoPDF.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/Raster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/Raster.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/RemoteRaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/RemoteRaster.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/SVGExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/SVGExport.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/SVGImport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/SVGImport.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/Tadpoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/Tadpoles.js -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/Tadpoles.pjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/Tadpoles.pjs -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/in.json -------------------------------------------------------------------------------- /bower_components/paper/examples/Node.js/in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Node.js/in.svg -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/BouncingBalls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/BouncingBalls.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/Chain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/Chain.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/DivisionRaster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/DivisionRaster.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/FutureSplash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/FutureSplash.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/HitTesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/HitTesting.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/InteractiveTiger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/InteractiveTiger.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/MetaBalls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/MetaBalls.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/NyanRainbow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/NyanRainbow.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/PathIntersections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/PathIntersections.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/Qbertify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/Qbertify.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/RadialRainbows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/RadialRainbows.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/RoundedRectangles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/RoundedRectangles.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/SatieLikedToDraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/SatieLikedToDraw.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/Simplify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/Simplify.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/SpiralRaster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/SpiralRaster.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/Tadpoles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/Tadpoles.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Paperjs.org/Voronoi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Paperjs.org/Voronoi.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Rasters/PhyllotaxisRaster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Rasters/PhyllotaxisRaster.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Rasters/Raster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Rasters/Raster.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Rasters/RotationRaster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Rasters/RotationRaster.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Circle Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Circle Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Clipping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Clipping.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Compound Path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Compound Path.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Empty Path Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Empty Path Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Gradients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Gradients.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Group Transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Group Transform.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Line Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Line Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Random Path Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Random Path Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Raster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Raster.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Rect and Attribute Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Rect and Attribute Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Rotated Primitives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Rotated Primitives.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Shapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Shapes.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Symbols.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Text Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Text Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Tiger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Tiger.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Transform Test 1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Transform Test 1.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Export/Transform Test 2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Export/Transform Test 2.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Arcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Arcs.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Butterfly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Butterfly.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Circle and Ellipse Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Circle and Ellipse Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Clipping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Clipping.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/From File.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/From File.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Gradient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Gradient.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Gradients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Gradients.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Inkscape Pivot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Inkscape Pivot.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Inkscape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Inkscape.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Line Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Line Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/MoreGradients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/MoreGradients.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Multiple Paths Test 1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Multiple Paths Test 1.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Multiple Paths Test 2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Multiple Paths Test 2.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Nested Groups Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Nested Groups Test.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Polybezier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Polybezier.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Rect Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Rect Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Symbols.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Text Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Text Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Tiger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Tiger.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Transform Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Transform Testing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/SVG Import/Viewbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/SVG Import/Viewbox.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/Arcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/Arcs.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/BlendModes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/BlendModes.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/BooleanOperations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/BooleanOperations.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/CompoundPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/CompoundPath.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/CurveTimeParameterization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/CurveTimeParameterization.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/HslColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/HslColor.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/PathStructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/PathStructure.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/Resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/Resize.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/RoundRectangle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/RoundRectangle.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/Shapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/Shapes.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/StrokeBounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/StrokeBounds.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Scripts/StrokeScaling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Scripts/StrokeScaling.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/BezierTool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/BezierTool.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/Circles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/Circles.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/Clouds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/Clouds.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/DrippingBrush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/DrippingBrush.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/FancyBrush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/FancyBrush.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/Grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/Grid.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/MultiLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/MultiLines.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/PathEditing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/PathEditing.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/SquareRounded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/SquareRounded.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/Stars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/Stars.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/Vektor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/Vektor.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/Wave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/Wave.html -------------------------------------------------------------------------------- /bower_components/paper/examples/Tools/WormFarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/Tools/WormFarm.html -------------------------------------------------------------------------------- /bower_components/paper/examples/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/examples/css/style.css -------------------------------------------------------------------------------- /bower_components/paper/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/bower_components/paper/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/index.html -------------------------------------------------------------------------------- /js/decomp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/js/decomp.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/js/main.js -------------------------------------------------------------------------------- /style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiantonescu/paper-matter/HEAD/style/main.css --------------------------------------------------------------------------------