├── .gitignore ├── LICENSE ├── README.md ├── dist ├── physx.js └── physx.min.js ├── examples ├── README.md ├── assets │ └── sfx-clock.wav ├── basic │ ├── images │ │ ├── basketball-gray.png │ │ ├── crate.jpg │ │ ├── hexagons.png │ │ └── pixels.png │ └── index.html ├── components │ ├── force-pushable.js │ ├── grab.js │ └── rain-of-entities.js ├── compound │ └── index.html ├── constraints │ └── index.html ├── materials │ └── index.html ├── pinboard │ ├── ammo-vs-physx.html │ ├── ammo.html │ ├── physx.html │ └── pinboard.js ├── sandbox │ └── index.html ├── spring │ └── index.html ├── stress │ └── index.html ├── sweeper │ └── index.html └── ttl │ └── index.html ├── index.js ├── package.json ├── src ├── physics.js └── physx.release.js ├── styles.css ├── wasm └── physx.release.wasm ├── webpack.config.js └── webpack.prod.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/README.md -------------------------------------------------------------------------------- /dist/physx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/dist/physx.js -------------------------------------------------------------------------------- /dist/physx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/dist/physx.min.js -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/assets/sfx-clock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/assets/sfx-clock.wav -------------------------------------------------------------------------------- /examples/basic/images/basketball-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/basic/images/basketball-gray.png -------------------------------------------------------------------------------- /examples/basic/images/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/basic/images/crate.jpg -------------------------------------------------------------------------------- /examples/basic/images/hexagons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/basic/images/hexagons.png -------------------------------------------------------------------------------- /examples/basic/images/pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/basic/images/pixels.png -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/basic/index.html -------------------------------------------------------------------------------- /examples/components/force-pushable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/components/force-pushable.js -------------------------------------------------------------------------------- /examples/components/grab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/components/grab.js -------------------------------------------------------------------------------- /examples/components/rain-of-entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/components/rain-of-entities.js -------------------------------------------------------------------------------- /examples/compound/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/compound/index.html -------------------------------------------------------------------------------- /examples/constraints/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/constraints/index.html -------------------------------------------------------------------------------- /examples/materials/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/materials/index.html -------------------------------------------------------------------------------- /examples/pinboard/ammo-vs-physx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/pinboard/ammo-vs-physx.html -------------------------------------------------------------------------------- /examples/pinboard/ammo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/pinboard/ammo.html -------------------------------------------------------------------------------- /examples/pinboard/physx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/pinboard/physx.html -------------------------------------------------------------------------------- /examples/pinboard/pinboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/pinboard/pinboard.js -------------------------------------------------------------------------------- /examples/sandbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/sandbox/index.html -------------------------------------------------------------------------------- /examples/spring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/spring/index.html -------------------------------------------------------------------------------- /examples/stress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/stress/index.html -------------------------------------------------------------------------------- /examples/sweeper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/sweeper/index.html -------------------------------------------------------------------------------- /examples/ttl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/examples/ttl/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/package.json -------------------------------------------------------------------------------- /src/physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/src/physics.js -------------------------------------------------------------------------------- /src/physx.release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/src/physx.release.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/styles.css -------------------------------------------------------------------------------- /wasm/physx.release.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/wasm/physx.release.wasm -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-frame/physx/HEAD/webpack.prod.config.js --------------------------------------------------------------------------------