init
Showing
.gitignore
0 → 100644
.jshintignore
0 → 100644
.jshintrc
0 → 100644
.npmignore
0 → 100644
Gruntfile.js
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
build/p2.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
build/p2.min.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
build/p2.renderer.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
build/p2.renderer.min.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
p2.iml
0 → 100644
package.json
0 → 100644
{ | |||
"name": "p2", | |||
"version": "0.7.1", | |||
"description": "A JavaScript 2D physics engine.", | |||
"author": "Stefan Hedman <schteppe@gmail.com> (http://steffe.se)", | |||
"keywords": [ | |||
"p2.js", | |||
"p2", | |||
"physics", | |||
"engine", | |||
"2d" | |||
], | |||
"main": "./build/p2.js", | |||
"engines": { | |||
"node": "*" | |||
}, | |||
"repository": { | |||
"type": "git", | |||
"url": "https://github.com/schteppe/p2.js.git" | |||
}, | |||
"bugs": { | |||
"url": "https://github.com/schteppe/p2.js/issues" | |||
}, | |||
"licenses": [ | |||
{ | |||
"type": "MIT" | |||
} | |||
], | |||
"devDependencies": { | |||
"grunt": "^0.4.5", | |||
"grunt-contrib-jshint": "^0.11.2", | |||
"grunt-contrib-nodeunit": "^0.4.1", | |||
"grunt-contrib-uglify": "~0.4.0", | |||
"grunt-contrib-watch": "~0.5.0", | |||
"grunt-browserify": "~2.0.1", | |||
"grunt-contrib-concat": "^0.4.0" | |||
}, | |||
"dependencies": { | |||
"poly-decomp": "0.1.1" | |||
} | |||
} |
src/collision/AABB.js
0 → 100644
src/collision/Broadphase.js
0 → 100644
src/collision/Narrowphase.js
0 → 100644
src/collision/Ray.js
0 → 100644
src/equations/Equation.js
0 → 100644
src/events/EventEmitter.js
0 → 100644
src/material/Material.js
0 → 100644
src/math/polyk.js
0 → 100644
src/math/vec2.js
0 → 100644
src/objects/Body.js
0 → 100644
src/objects/LinearSpring.js
0 → 100644
src/objects/Spring.js
0 → 100644
src/p2.js
0 → 100644
src/shapes/Box.js
0 → 100644
src/shapes/Capsule.js
0 → 100644
src/shapes/Circle.js
0 → 100644
src/shapes/Convex.js
0 → 100644
src/shapes/Heightfield.js
0 → 100644
src/shapes/Line.js
0 → 100644
src/shapes/Particle.js
0 → 100644
src/shapes/Plane.js
0 → 100644
src/shapes/Shape.js
0 → 100644
src/solver/GSSolver.js
0 → 100644
src/solver/Solver.js
0 → 100644
src/utils/IslandNodePool.js
0 → 100644
src/utils/IslandPool.js
0 → 100644
src/utils/OverlapKeeper.js
0 → 100644
src/utils/Pool.js
0 → 100644
src/utils/TupleDictionary.js
0 → 100644
src/utils/Utils.js
0 → 100644
src/world/Island.js
0 → 100644
src/world/IslandManager.js
0 → 100644
src/world/IslandNode.js
0 → 100644
src/world/World.js
0 → 100644
test/collision/AABB.js
0 → 100644
test/collision/Broadphase.js
0 → 100644
test/collision/Ray.js
0 → 100644
test/equations/Equation.js
0 → 100644
test/events/EventEmitter.js
0 → 100644
test/material/Material.js
0 → 100644
test/math/vec2.js
0 → 100644
test/objects/Body.js
0 → 100644
test/objects/LinearSpring.js
0 → 100644
test/shapes/Box.js
0 → 100644
test/shapes/Capsule.js
0 → 100644
test/shapes/Circle.js
0 → 100644
test/shapes/Convex.js
0 → 100644
test/shapes/Line.js
0 → 100644
test/shapes/Particle.js
0 → 100644
test/shapes/Plane.js
0 → 100644
test/shapes/Shape.js
0 → 100644
test/solver/GSSolver.js
0 → 100644
test/solver/Solver.js
0 → 100644
test/utils/OverlapKeeper.js
0 → 100644
test/utils/Utils.js
0 → 100644
test/world/IslandManager.js
0 → 100644
test/world/World.js
0 → 100644
yarn.lock
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
yuidoc.json
0 → 100644
Please register or sign in to comment