├── .project ├── .smalltalk.ston ├── .travis.yml ├── LICENSE ├── README.md ├── images └── box2dlite.png └── src ├── .properties ├── BaselineOfBox2DLite ├── BaselineOfBox2DLite.class.st └── package.st ├── Box2DLite-Tests ├── B2ArbiterKeyTest.class.st ├── B2BodyTest.class.st ├── B2ClipVertexTest.class.st ├── B2ContactTest.class.st ├── B2DisplayTest.class.st ├── B2FeaturePairTest.class.st ├── B2JointTest.class.st ├── B2Mat22Test.class.st ├── B2WorldTest.class.st └── package.st └── Box2DLite ├── B2Arbiter.class.st ├── B2ArbiterKey.class.st ├── B2Body.class.st ├── B2ClipVertex.class.st ├── B2Collider.class.st ├── B2Contact.class.st ├── B2Demo.class.st ├── B2Demo1.class.st ├── B2Demo2.class.st ├── B2Demo3.class.st ├── B2Demo4.class.st ├── B2Demo5.class.st ├── B2Demo6.class.st ├── B2Demo7.class.st ├── B2Demo8.class.st ├── B2Demo9.class.st ├── B2DemoMorph.class.st ├── B2Display.class.st ├── B2FeaturePair.class.st ├── B2Joint.class.st ├── B2Mat22.class.st ├── B2Recorder.class.st ├── B2SpFrame.class.st ├── B2World.class.st ├── Point.extension.st └── package.st /.project: -------------------------------------------------------------------------------- 1 | { 2 | 'srcDirectory' : 'src' 3 | } -------------------------------------------------------------------------------- /.smalltalk.ston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/.smalltalk.ston -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/README.md -------------------------------------------------------------------------------- /images/box2dlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/images/box2dlite.png -------------------------------------------------------------------------------- /src/.properties: -------------------------------------------------------------------------------- 1 | { 2 | #format : #tonel 3 | } -------------------------------------------------------------------------------- /src/BaselineOfBox2DLite/BaselineOfBox2DLite.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/BaselineOfBox2DLite/BaselineOfBox2DLite.class.st -------------------------------------------------------------------------------- /src/BaselineOfBox2DLite/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : #BaselineOfBox2DLite } 2 | -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2ArbiterKeyTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2ArbiterKeyTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2BodyTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2BodyTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2ClipVertexTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2ClipVertexTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2ContactTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2ContactTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2DisplayTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2DisplayTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2FeaturePairTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2FeaturePairTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2JointTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2JointTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2Mat22Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2Mat22Test.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/B2WorldTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite-Tests/B2WorldTest.class.st -------------------------------------------------------------------------------- /src/Box2DLite-Tests/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : #'Box2DLite-Tests' } 2 | -------------------------------------------------------------------------------- /src/Box2DLite/B2Arbiter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Arbiter.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2ArbiterKey.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2ArbiterKey.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Body.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Body.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2ClipVertex.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2ClipVertex.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Collider.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Collider.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Contact.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Contact.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo1.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo1.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo2.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo2.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo3.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo3.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo4.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo4.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo5.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo5.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo6.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo6.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo7.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo7.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo8.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo8.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Demo9.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Demo9.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2DemoMorph.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2DemoMorph.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Display.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Display.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2FeaturePair.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2FeaturePair.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Joint.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Joint.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Mat22.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Mat22.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2Recorder.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2Recorder.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2SpFrame.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2SpFrame.class.st -------------------------------------------------------------------------------- /src/Box2DLite/B2World.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/B2World.class.st -------------------------------------------------------------------------------- /src/Box2DLite/Point.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EiichiroIto/Box2DLiteForPharo/HEAD/src/Box2DLite/Point.extension.st -------------------------------------------------------------------------------- /src/Box2DLite/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : #Box2DLite } 2 | --------------------------------------------------------------------------------