Checkpoint on box2d as a lib
authordsc <david.schoonover@gmail.com>
Thu, 5 May 2011 05:36:52 +0000 (22:36 -0700)
committerdsc <david.schoonover@gmail.com>
Thu, 5 May 2011 05:37:31 +0000 (22:37 -0700)
135 files changed:
libs/box2d/.gitignore [new file with mode: 0644]
libs/box2d/box2d-ios.xcodeproj/project.pbxproj [new file with mode: 0644]
libs/box2d/box2d-iphone.xcodeproj/project.pbxproj [new file with mode: 0644]
libs/box2d/box2d-osx.xcodeproj/project.pbxproj [new file with mode: 0644]
libs/box2d/iPhone/Box2D_Prefix.pch [new file with mode: 0644]
libs/box2d/iPhone/Classes/Box2DAppDelegate.h [new file with mode: 0644]
libs/box2d/iPhone/Classes/Box2DAppDelegate.mm [new file with mode: 0644]
libs/box2d/iPhone/Classes/Box2DView.h [new file with mode: 0644]
libs/box2d/iPhone/Classes/Box2DView.mm [new file with mode: 0644]
libs/box2d/iPhone/Classes/Delegates.h [new file with mode: 0644]
libs/box2d/iPhone/Classes/GLES-Render.h [new file with mode: 0644]
libs/box2d/iPhone/Classes/GLES-Render.mm [new file with mode: 0644]
libs/box2d/iPhone/Classes/TestEntriesViewController.h [new file with mode: 0644]
libs/box2d/iPhone/Classes/TestEntriesViewController.mm [new file with mode: 0644]
libs/box2d/iPhone/Classes/iPhoneTest.h [new file with mode: 0644]
libs/box2d/iPhone/Classes/iPhoneTest.mm [new file with mode: 0644]
libs/box2d/iPhone/Classes/iPhoneTestEntries.mm [new file with mode: 0644]
libs/box2d/iPhone/Icon.png [new file with mode: 0644]
libs/box2d/iPhone/Info.plist [new file with mode: 0644]
libs/box2d/iPhone/MainWindow.xib [new file with mode: 0644]
libs/box2d/iPhone/main.m [new file with mode: 0644]
libs/box2d/src/Box2D/Box2D.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/Shapes/b2CircleShape.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/Shapes/b2CircleShape.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/Shapes/b2PolygonShape.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/Shapes/b2PolygonShape.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/Shapes/b2Shape.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2BroadPhase.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2BroadPhase.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2CollideCircle.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2CollidePolygon.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2Collision.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2Collision.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2Distance.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2Distance.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2DynamicTree.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2DynamicTree.h [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2TimeOfImpact.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Collision/b2TimeOfImpact.h [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2BlockAllocator.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2BlockAllocator.h [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2Math.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2Math.h [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2Settings.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2Settings.h [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2StackAllocator.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Common/b2StackAllocator.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2CircleContact.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2CircleContact.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2Contact.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2Contact.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2ContactSolver.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2ContactSolver.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2PolygonContact.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2PolygonContact.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2TOISolver.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Contacts/b2TOISolver.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2DistanceJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2DistanceJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2FrictionJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2FrictionJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2GearJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2GearJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2Joint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2Joint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2LineJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2LineJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2MouseJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2MouseJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2PrismaticJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2PulleyJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2PulleyJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2RevoluteJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2WeldJoint.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/Joints/b2WeldJoint.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2Body.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2Body.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2ContactManager.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2ContactManager.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2Fixture.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2Fixture.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2Island.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2Island.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2TimeStep.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2World.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2World.h [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2WorldCallbacks.cpp [new file with mode: 0644]
libs/box2d/src/Box2D/Dynamics/b2WorldCallbacks.h [new file with mode: 0644]
libs/box2d/src/Tests/ApplyForce.h [new file with mode: 0644]
libs/box2d/src/Tests/BodyTypes.h [new file with mode: 0644]
libs/box2d/src/Tests/Breakable.h [new file with mode: 0644]
libs/box2d/src/Tests/Bridge.h [new file with mode: 0644]
libs/box2d/src/Tests/BulletTest.h [new file with mode: 0644]
libs/box2d/src/Tests/Cantilever.h [new file with mode: 0644]
libs/box2d/src/Tests/Car.h [new file with mode: 0644]
libs/box2d/src/Tests/Chain.h [new file with mode: 0644]
libs/box2d/src/Tests/CharacterCollision.h [new file with mode: 0644]
libs/box2d/src/Tests/CollisionFiltering.h [new file with mode: 0644]
libs/box2d/src/Tests/CollisionProcessing.h [new file with mode: 0644]
libs/box2d/src/Tests/CompoundShapes.h [new file with mode: 0644]
libs/box2d/src/Tests/Confined.h [new file with mode: 0644]
libs/box2d/src/Tests/ContinuousTest.h [new file with mode: 0644]
libs/box2d/src/Tests/DistanceTest.h [new file with mode: 0644]
libs/box2d/src/Tests/Dominos.h [new file with mode: 0644]
libs/box2d/src/Tests/DynamicTreeTest.h [new file with mode: 0644]
libs/box2d/src/Tests/EdgeShapes.h [new file with mode: 0644]
libs/box2d/src/Tests/EdgeTest.h [new file with mode: 0644]
libs/box2d/src/Tests/Gears.h [new file with mode: 0644]
libs/box2d/src/Tests/LineJoint.h [new file with mode: 0644]
libs/box2d/src/Tests/OneSidedPlatform.h [new file with mode: 0644]
libs/box2d/src/Tests/Pinball.h [new file with mode: 0644]
libs/box2d/src/Tests/PolyCollision.h [new file with mode: 0644]
libs/box2d/src/Tests/PolyShapes.h [new file with mode: 0644]
libs/box2d/src/Tests/Prismatic.h [new file with mode: 0644]
libs/box2d/src/Tests/Pulleys.h [new file with mode: 0644]
libs/box2d/src/Tests/Pyramid.h [new file with mode: 0644]
libs/box2d/src/Tests/RayCast.h [new file with mode: 0644]
libs/box2d/src/Tests/Revolute.h [new file with mode: 0644]
libs/box2d/src/Tests/Rope.h [new file with mode: 0644]
libs/box2d/src/Tests/RopeJoint.h [new file with mode: 0644]
libs/box2d/src/Tests/SensorTest.h [new file with mode: 0644]
libs/box2d/src/Tests/ShapeEditing.h [new file with mode: 0644]
libs/box2d/src/Tests/SliderCrank.h [new file with mode: 0644]
libs/box2d/src/Tests/SphereStack.h [new file with mode: 0644]
libs/box2d/src/Tests/TheoJansen.h [new file with mode: 0644]
libs/box2d/src/Tests/Tiles.h [new file with mode: 0644]
libs/box2d/src/Tests/TimeOfImpact.h [new file with mode: 0644]
libs/box2d/src/Tests/VaryingFriction.h [new file with mode: 0644]
libs/box2d/src/Tests/VaryingRestitution.h [new file with mode: 0644]
libs/box2d/src/Tests/VerticalStack.h [new file with mode: 0644]
libs/box2d/src/Tests/Web.h [new file with mode: 0644]

diff --git a/libs/box2d/.gitignore b/libs/box2d/.gitignore
new file mode 100644 (file)
index 0000000..20ea569
--- /dev/null
@@ -0,0 +1,2 @@
+Box2D/
+Contributions/
diff --git a/libs/box2d/box2d-ios.xcodeproj/project.pbxproj b/libs/box2d/box2d-ios.xcodeproj/project.pbxproj
new file mode 100644 (file)
index 0000000..edca52a
--- /dev/null
@@ -0,0 +1,541 @@
+// !$*UTF8*$!
+{
+       archiveVersion = 1;
+       classes = {
+       };
+       objectVersion = 46;
+       objects = {
+
+/* Begin PBXBuildFile section */
+               491330C81372616300DFB46D /* Box2D.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913307B1372616300DFB46D /* Box2D.h */; };
+               491330C91372616300DFB46D /* b2BroadPhase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4913307D1372616300DFB46D /* b2BroadPhase.cpp */; };
+               491330CA1372616300DFB46D /* b2BroadPhase.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913307E1372616300DFB46D /* b2BroadPhase.h */; };
+               491330CB1372616300DFB46D /* b2CollideCircle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4913307F1372616300DFB46D /* b2CollideCircle.cpp */; };
+               491330CC1372616300DFB46D /* b2CollidePolygon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330801372616300DFB46D /* b2CollidePolygon.cpp */; };
+               491330CD1372616300DFB46D /* b2Collision.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330811372616300DFB46D /* b2Collision.cpp */; };
+               491330CE1372616300DFB46D /* b2Collision.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330821372616300DFB46D /* b2Collision.h */; };
+               491330CF1372616300DFB46D /* b2Distance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330831372616300DFB46D /* b2Distance.cpp */; };
+               491330D01372616300DFB46D /* b2Distance.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330841372616300DFB46D /* b2Distance.h */; };
+               491330D11372616300DFB46D /* b2DynamicTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330851372616300DFB46D /* b2DynamicTree.cpp */; };
+               491330D21372616300DFB46D /* b2DynamicTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330861372616300DFB46D /* b2DynamicTree.h */; };
+               491330D31372616300DFB46D /* b2TimeOfImpact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330871372616300DFB46D /* b2TimeOfImpact.cpp */; };
+               491330D41372616300DFB46D /* b2TimeOfImpact.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330881372616300DFB46D /* b2TimeOfImpact.h */; };
+               491330D51372616300DFB46D /* b2CircleShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4913308A1372616300DFB46D /* b2CircleShape.cpp */; };
+               491330D61372616300DFB46D /* b2CircleShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913308B1372616300DFB46D /* b2CircleShape.h */; };
+               491330D71372616300DFB46D /* b2PolygonShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4913308C1372616300DFB46D /* b2PolygonShape.cpp */; };
+               491330D81372616300DFB46D /* b2PolygonShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913308D1372616300DFB46D /* b2PolygonShape.h */; };
+               491330D91372616300DFB46D /* b2Shape.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913308E1372616300DFB46D /* b2Shape.h */; };
+               491330DA1372616300DFB46D /* b2BlockAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330901372616300DFB46D /* b2BlockAllocator.cpp */; };
+               491330DB1372616300DFB46D /* b2BlockAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330911372616300DFB46D /* b2BlockAllocator.h */; };
+               491330DC1372616300DFB46D /* b2Math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330921372616300DFB46D /* b2Math.cpp */; };
+               491330DD1372616300DFB46D /* b2Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330931372616300DFB46D /* b2Math.h */; };
+               491330DE1372616300DFB46D /* b2Settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330941372616300DFB46D /* b2Settings.cpp */; };
+               491330DF1372616300DFB46D /* b2Settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330951372616300DFB46D /* b2Settings.h */; };
+               491330E01372616300DFB46D /* b2StackAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330961372616300DFB46D /* b2StackAllocator.cpp */; };
+               491330E11372616300DFB46D /* b2StackAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330971372616300DFB46D /* b2StackAllocator.h */; };
+               491330E21372616300DFB46D /* b2Body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330991372616300DFB46D /* b2Body.cpp */; };
+               491330E31372616300DFB46D /* b2Body.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913309A1372616300DFB46D /* b2Body.h */; };
+               491330E41372616300DFB46D /* b2ContactManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4913309B1372616300DFB46D /* b2ContactManager.cpp */; };
+               491330E51372616300DFB46D /* b2ContactManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913309C1372616300DFB46D /* b2ContactManager.h */; };
+               491330E61372616300DFB46D /* b2Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4913309D1372616300DFB46D /* b2Fixture.cpp */; };
+               491330E71372616300DFB46D /* b2Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913309E1372616300DFB46D /* b2Fixture.h */; };
+               491330E81372616300DFB46D /* b2Island.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4913309F1372616300DFB46D /* b2Island.cpp */; };
+               491330E91372616300DFB46D /* b2Island.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330A01372616300DFB46D /* b2Island.h */; };
+               491330EA1372616300DFB46D /* b2TimeStep.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330A11372616300DFB46D /* b2TimeStep.h */; };
+               491330EB1372616300DFB46D /* b2World.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330A21372616300DFB46D /* b2World.cpp */; };
+               491330EC1372616300DFB46D /* b2World.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330A31372616300DFB46D /* b2World.h */; };
+               491330ED1372616300DFB46D /* b2WorldCallbacks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330A41372616300DFB46D /* b2WorldCallbacks.cpp */; };
+               491330EE1372616300DFB46D /* b2WorldCallbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330A51372616300DFB46D /* b2WorldCallbacks.h */; };
+               491330EF1372616300DFB46D /* b2CircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330A71372616300DFB46D /* b2CircleContact.cpp */; };
+               491330F01372616300DFB46D /* b2CircleContact.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330A81372616300DFB46D /* b2CircleContact.h */; };
+               491330F11372616300DFB46D /* b2Contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330A91372616300DFB46D /* b2Contact.cpp */; };
+               491330F21372616300DFB46D /* b2Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330AA1372616300DFB46D /* b2Contact.h */; };
+               491330F31372616300DFB46D /* b2ContactSolver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330AB1372616300DFB46D /* b2ContactSolver.cpp */; };
+               491330F41372616300DFB46D /* b2ContactSolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330AC1372616300DFB46D /* b2ContactSolver.h */; };
+               491330F51372616300DFB46D /* b2PolygonAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330AD1372616300DFB46D /* b2PolygonAndCircleContact.cpp */; };
+               491330F61372616300DFB46D /* b2PolygonAndCircleContact.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330AE1372616300DFB46D /* b2PolygonAndCircleContact.h */; };
+               491330F71372616300DFB46D /* b2PolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330AF1372616300DFB46D /* b2PolygonContact.cpp */; };
+               491330F81372616300DFB46D /* b2PolygonContact.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330B01372616300DFB46D /* b2PolygonContact.h */; };
+               491330F91372616300DFB46D /* b2TOISolver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330B11372616300DFB46D /* b2TOISolver.cpp */; };
+               491330FA1372616300DFB46D /* b2TOISolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330B21372616300DFB46D /* b2TOISolver.h */; };
+               491330FB1372616300DFB46D /* b2DistanceJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330B41372616300DFB46D /* b2DistanceJoint.cpp */; };
+               491330FC1372616300DFB46D /* b2DistanceJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330B51372616300DFB46D /* b2DistanceJoint.h */; };
+               491330FD1372616300DFB46D /* b2FrictionJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330B61372616300DFB46D /* b2FrictionJoint.cpp */; };
+               491330FE1372616300DFB46D /* b2FrictionJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330B71372616300DFB46D /* b2FrictionJoint.h */; };
+               491330FF1372616300DFB46D /* b2GearJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330B81372616300DFB46D /* b2GearJoint.cpp */; };
+               491331001372616300DFB46D /* b2GearJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330B91372616300DFB46D /* b2GearJoint.h */; };
+               491331011372616300DFB46D /* b2Joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330BA1372616300DFB46D /* b2Joint.cpp */; };
+               491331021372616300DFB46D /* b2Joint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330BB1372616300DFB46D /* b2Joint.h */; };
+               491331031372616300DFB46D /* b2LineJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330BC1372616300DFB46D /* b2LineJoint.cpp */; };
+               491331041372616300DFB46D /* b2LineJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330BD1372616300DFB46D /* b2LineJoint.h */; };
+               491331051372616300DFB46D /* b2MouseJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330BE1372616300DFB46D /* b2MouseJoint.cpp */; };
+               491331061372616300DFB46D /* b2MouseJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330BF1372616300DFB46D /* b2MouseJoint.h */; };
+               491331071372616300DFB46D /* b2PrismaticJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330C01372616300DFB46D /* b2PrismaticJoint.cpp */; };
+               491331081372616300DFB46D /* b2PrismaticJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330C11372616300DFB46D /* b2PrismaticJoint.h */; };
+               491331091372616300DFB46D /* b2PulleyJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330C21372616300DFB46D /* b2PulleyJoint.cpp */; };
+               4913310A1372616300DFB46D /* b2PulleyJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330C31372616300DFB46D /* b2PulleyJoint.h */; };
+               4913310B1372616300DFB46D /* b2RevoluteJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330C41372616300DFB46D /* b2RevoluteJoint.cpp */; };
+               4913310C1372616300DFB46D /* b2RevoluteJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330C51372616300DFB46D /* b2RevoluteJoint.h */; };
+               4913310D1372616300DFB46D /* b2WeldJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491330C61372616300DFB46D /* b2WeldJoint.cpp */; };
+               4913310E1372616300DFB46D /* b2WeldJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 491330C71372616300DFB46D /* b2WeldJoint.h */; };
+               49133123137262F200DFB46D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49133122137262F200DFB46D /* Foundation.framework */; };
+               491331281372630700DFB46D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 491331271372630700DFB46D /* UIKit.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+               4913305F1372610400DFB46D /* libBox2D.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libBox2D.a; sourceTree = BUILT_PRODUCTS_DIR; };
+               4913307B1372616300DFB46D /* Box2D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Box2D.h; sourceTree = "<group>"; };
+               4913307D1372616300DFB46D /* b2BroadPhase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2BroadPhase.cpp; sourceTree = "<group>"; };
+               4913307E1372616300DFB46D /* b2BroadPhase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2BroadPhase.h; sourceTree = "<group>"; };
+               4913307F1372616300DFB46D /* b2CollideCircle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollideCircle.cpp; sourceTree = "<group>"; };
+               491330801372616300DFB46D /* b2CollidePolygon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollidePolygon.cpp; sourceTree = "<group>"; };
+               491330811372616300DFB46D /* b2Collision.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Collision.cpp; sourceTree = "<group>"; };
+               491330821372616300DFB46D /* b2Collision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Collision.h; sourceTree = "<group>"; };
+               491330831372616300DFB46D /* b2Distance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Distance.cpp; sourceTree = "<group>"; };
+               491330841372616300DFB46D /* b2Distance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Distance.h; sourceTree = "<group>"; };
+               491330851372616300DFB46D /* b2DynamicTree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2DynamicTree.cpp; sourceTree = "<group>"; };
+               491330861372616300DFB46D /* b2DynamicTree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2DynamicTree.h; sourceTree = "<group>"; };
+               491330871372616300DFB46D /* b2TimeOfImpact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2TimeOfImpact.cpp; sourceTree = "<group>"; };
+               491330881372616300DFB46D /* b2TimeOfImpact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2TimeOfImpact.h; sourceTree = "<group>"; };
+               4913308A1372616300DFB46D /* b2CircleShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CircleShape.cpp; sourceTree = "<group>"; };
+               4913308B1372616300DFB46D /* b2CircleShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2CircleShape.h; sourceTree = "<group>"; };
+               4913308C1372616300DFB46D /* b2PolygonShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonShape.cpp; sourceTree = "<group>"; };
+               4913308D1372616300DFB46D /* b2PolygonShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonShape.h; sourceTree = "<group>"; };
+               4913308E1372616300DFB46D /* b2Shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Shape.h; sourceTree = "<group>"; };
+               491330901372616300DFB46D /* b2BlockAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2BlockAllocator.cpp; sourceTree = "<group>"; };
+               491330911372616300DFB46D /* b2BlockAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2BlockAllocator.h; sourceTree = "<group>"; };
+               491330921372616300DFB46D /* b2Math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Math.cpp; sourceTree = "<group>"; };
+               491330931372616300DFB46D /* b2Math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Math.h; sourceTree = "<group>"; };
+               491330941372616300DFB46D /* b2Settings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Settings.cpp; sourceTree = "<group>"; };
+               491330951372616300DFB46D /* b2Settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Settings.h; sourceTree = "<group>"; };
+               491330961372616300DFB46D /* b2StackAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2StackAllocator.cpp; sourceTree = "<group>"; };
+               491330971372616300DFB46D /* b2StackAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2StackAllocator.h; sourceTree = "<group>"; };
+               491330991372616300DFB46D /* b2Body.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Body.cpp; sourceTree = "<group>"; };
+               4913309A1372616300DFB46D /* b2Body.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Body.h; sourceTree = "<group>"; };
+               4913309B1372616300DFB46D /* b2ContactManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ContactManager.cpp; sourceTree = "<group>"; };
+               4913309C1372616300DFB46D /* b2ContactManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ContactManager.h; sourceTree = "<group>"; };
+               4913309D1372616300DFB46D /* b2Fixture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Fixture.cpp; sourceTree = "<group>"; };
+               4913309E1372616300DFB46D /* b2Fixture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Fixture.h; sourceTree = "<group>"; };
+               4913309F1372616300DFB46D /* b2Island.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Island.cpp; sourceTree = "<group>"; };
+               491330A01372616300DFB46D /* b2Island.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Island.h; sourceTree = "<group>"; };
+               491330A11372616300DFB46D /* b2TimeStep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2TimeStep.h; sourceTree = "<group>"; };
+               491330A21372616300DFB46D /* b2World.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2World.cpp; sourceTree = "<group>"; };
+               491330A31372616300DFB46D /* b2World.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2World.h; sourceTree = "<group>"; };
+               491330A41372616300DFB46D /* b2WorldCallbacks.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WorldCallbacks.cpp; sourceTree = "<group>"; };
+               491330A51372616300DFB46D /* b2WorldCallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WorldCallbacks.h; sourceTree = "<group>"; };
+               491330A71372616300DFB46D /* b2CircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CircleContact.cpp; sourceTree = "<group>"; };
+               491330A81372616300DFB46D /* b2CircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2CircleContact.h; sourceTree = "<group>"; };
+               491330A91372616300DFB46D /* b2Contact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Contact.cpp; sourceTree = "<group>"; };
+               491330AA1372616300DFB46D /* b2Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Contact.h; sourceTree = "<group>"; };
+               491330AB1372616300DFB46D /* b2ContactSolver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ContactSolver.cpp; sourceTree = "<group>"; };
+               491330AC1372616300DFB46D /* b2ContactSolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ContactSolver.h; sourceTree = "<group>"; };
+               491330AD1372616300DFB46D /* b2PolygonAndCircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonAndCircleContact.cpp; sourceTree = "<group>"; };
+               491330AE1372616300DFB46D /* b2PolygonAndCircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonAndCircleContact.h; sourceTree = "<group>"; };
+               491330AF1372616300DFB46D /* b2PolygonContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonContact.cpp; sourceTree = "<group>"; };
+               491330B01372616300DFB46D /* b2PolygonContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonContact.h; sourceTree = "<group>"; };
+               491330B11372616300DFB46D /* b2TOISolver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2TOISolver.cpp; sourceTree = "<group>"; };
+               491330B21372616300DFB46D /* b2TOISolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2TOISolver.h; sourceTree = "<group>"; };
+               491330B41372616300DFB46D /* b2DistanceJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2DistanceJoint.cpp; sourceTree = "<group>"; };
+               491330B51372616300DFB46D /* b2DistanceJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2DistanceJoint.h; sourceTree = "<group>"; };
+               491330B61372616300DFB46D /* b2FrictionJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2FrictionJoint.cpp; sourceTree = "<group>"; };
+               491330B71372616300DFB46D /* b2FrictionJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2FrictionJoint.h; sourceTree = "<group>"; };
+               491330B81372616300DFB46D /* b2GearJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2GearJoint.cpp; sourceTree = "<group>"; };
+               491330B91372616300DFB46D /* b2GearJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2GearJoint.h; sourceTree = "<group>"; };
+               491330BA1372616300DFB46D /* b2Joint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Joint.cpp; sourceTree = "<group>"; };
+               491330BB1372616300DFB46D /* b2Joint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Joint.h; sourceTree = "<group>"; };
+               491330BC1372616300DFB46D /* b2LineJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2LineJoint.cpp; sourceTree = "<group>"; };
+               491330BD1372616300DFB46D /* b2LineJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2LineJoint.h; sourceTree = "<group>"; };
+               491330BE1372616300DFB46D /* b2MouseJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2MouseJoint.cpp; sourceTree = "<group>"; };
+               491330BF1372616300DFB46D /* b2MouseJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2MouseJoint.h; sourceTree = "<group>"; };
+               491330C01372616300DFB46D /* b2PrismaticJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PrismaticJoint.cpp; sourceTree = "<group>"; };
+               491330C11372616300DFB46D /* b2PrismaticJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PrismaticJoint.h; sourceTree = "<group>"; };
+               491330C21372616300DFB46D /* b2PulleyJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PulleyJoint.cpp; sourceTree = "<group>"; };
+               491330C31372616300DFB46D /* b2PulleyJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PulleyJoint.h; sourceTree = "<group>"; };
+               491330C41372616300DFB46D /* b2RevoluteJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2RevoluteJoint.cpp; sourceTree = "<group>"; };
+               491330C51372616300DFB46D /* b2RevoluteJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2RevoluteJoint.h; sourceTree = "<group>"; };
+               491330C61372616300DFB46D /* b2WeldJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WeldJoint.cpp; sourceTree = "<group>"; };
+               491330C71372616300DFB46D /* b2WeldJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WeldJoint.h; sourceTree = "<group>"; };
+               49133122137262F200DFB46D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
+               491331271372630700DFB46D /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+               4913305C1372610400DFB46D /* Frameworks */ = {
+                       isa = PBXFrameworksBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               491331281372630700DFB46D /* UIKit.framework in Frameworks */,
+                               49133123137262F200DFB46D /* Foundation.framework in Frameworks */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+               491330541372610400DFB46D = {
+                       isa = PBXGroup;
+                       children = (
+                               4913307A1372616300DFB46D /* Box2D */,
+                               491331291372630F00DFB46D /* Frameworks */,
+                               491330601372610400DFB46D /* Products */,
+                       );
+                       sourceTree = "<group>";
+               };
+               491330601372610400DFB46D /* Products */ = {
+                       isa = PBXGroup;
+                       children = (
+                               4913305F1372610400DFB46D /* libBox2D.a */,
+                       );
+                       name = Products;
+                       sourceTree = "<group>";
+               };
+               4913307A1372616300DFB46D /* Box2D */ = {
+                       isa = PBXGroup;
+                       children = (
+                               4913307B1372616300DFB46D /* Box2D.h */,
+                               4913307C1372616300DFB46D /* Collision */,
+                               4913308F1372616300DFB46D /* Common */,
+                               491330981372616300DFB46D /* Dynamics */,
+                       );
+                       name = Box2D;
+                       path = src/Box2D;
+                       sourceTree = "<group>";
+               };
+               4913307C1372616300DFB46D /* Collision */ = {
+                       isa = PBXGroup;
+                       children = (
+                               4913307D1372616300DFB46D /* b2BroadPhase.cpp */,
+                               4913307E1372616300DFB46D /* b2BroadPhase.h */,
+                               4913307F1372616300DFB46D /* b2CollideCircle.cpp */,
+                               491330801372616300DFB46D /* b2CollidePolygon.cpp */,
+                               491330811372616300DFB46D /* b2Collision.cpp */,
+                               491330821372616300DFB46D /* b2Collision.h */,
+                               491330831372616300DFB46D /* b2Distance.cpp */,
+                               491330841372616300DFB46D /* b2Distance.h */,
+                               491330851372616300DFB46D /* b2DynamicTree.cpp */,
+                               491330861372616300DFB46D /* b2DynamicTree.h */,
+                               491330871372616300DFB46D /* b2TimeOfImpact.cpp */,
+                               491330881372616300DFB46D /* b2TimeOfImpact.h */,
+                               491330891372616300DFB46D /* Shapes */,
+                       );
+                       path = Collision;
+                       sourceTree = "<group>";
+               };
+               491330891372616300DFB46D /* Shapes */ = {
+                       isa = PBXGroup;
+                       children = (
+                               4913308A1372616300DFB46D /* b2CircleShape.cpp */,
+                               4913308B1372616300DFB46D /* b2CircleShape.h */,
+                               4913308C1372616300DFB46D /* b2PolygonShape.cpp */,
+                               4913308D1372616300DFB46D /* b2PolygonShape.h */,
+                               4913308E1372616300DFB46D /* b2Shape.h */,
+                       );
+                       path = Shapes;
+                       sourceTree = "<group>";
+               };
+               4913308F1372616300DFB46D /* Common */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491330901372616300DFB46D /* b2BlockAllocator.cpp */,
+                               491330911372616300DFB46D /* b2BlockAllocator.h */,
+                               491330921372616300DFB46D /* b2Math.cpp */,
+                               491330931372616300DFB46D /* b2Math.h */,
+                               491330941372616300DFB46D /* b2Settings.cpp */,
+                               491330951372616300DFB46D /* b2Settings.h */,
+                               491330961372616300DFB46D /* b2StackAllocator.cpp */,
+                               491330971372616300DFB46D /* b2StackAllocator.h */,
+                       );
+                       path = Common;
+                       sourceTree = "<group>";
+               };
+               491330981372616300DFB46D /* Dynamics */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491330991372616300DFB46D /* b2Body.cpp */,
+                               4913309A1372616300DFB46D /* b2Body.h */,
+                               4913309B1372616300DFB46D /* b2ContactManager.cpp */,
+                               4913309C1372616300DFB46D /* b2ContactManager.h */,
+                               4913309D1372616300DFB46D /* b2Fixture.cpp */,
+                               4913309E1372616300DFB46D /* b2Fixture.h */,
+                               4913309F1372616300DFB46D /* b2Island.cpp */,
+                               491330A01372616300DFB46D /* b2Island.h */,
+                               491330A11372616300DFB46D /* b2TimeStep.h */,
+                               491330A21372616300DFB46D /* b2World.cpp */,
+                               491330A31372616300DFB46D /* b2World.h */,
+                               491330A41372616300DFB46D /* b2WorldCallbacks.cpp */,
+                               491330A51372616300DFB46D /* b2WorldCallbacks.h */,
+                               491330A61372616300DFB46D /* Contacts */,
+                               491330B31372616300DFB46D /* Joints */,
+                       );
+                       path = Dynamics;
+                       sourceTree = "<group>";
+               };
+               491330A61372616300DFB46D /* Contacts */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491330A71372616300DFB46D /* b2CircleContact.cpp */,
+                               491330A81372616300DFB46D /* b2CircleContact.h */,
+                               491330A91372616300DFB46D /* b2Contact.cpp */,
+                               491330AA1372616300DFB46D /* b2Contact.h */,
+                               491330AB1372616300DFB46D /* b2ContactSolver.cpp */,
+                               491330AC1372616300DFB46D /* b2ContactSolver.h */,
+                               491330AD1372616300DFB46D /* b2PolygonAndCircleContact.cpp */,
+                               491330AE1372616300DFB46D /* b2PolygonAndCircleContact.h */,
+                               491330AF1372616300DFB46D /* b2PolygonContact.cpp */,
+                               491330B01372616300DFB46D /* b2PolygonContact.h */,
+                               491330B11372616300DFB46D /* b2TOISolver.cpp */,
+                               491330B21372616300DFB46D /* b2TOISolver.h */,
+                       );
+                       path = Contacts;
+                       sourceTree = "<group>";
+               };
+               491330B31372616300DFB46D /* Joints */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491330B41372616300DFB46D /* b2DistanceJoint.cpp */,
+                               491330B51372616300DFB46D /* b2DistanceJoint.h */,
+                               491330B61372616300DFB46D /* b2FrictionJoint.cpp */,
+                               491330B71372616300DFB46D /* b2FrictionJoint.h */,
+                               491330B81372616300DFB46D /* b2GearJoint.cpp */,
+                               491330B91372616300DFB46D /* b2GearJoint.h */,
+                               491330BA1372616300DFB46D /* b2Joint.cpp */,
+                               491330BB1372616300DFB46D /* b2Joint.h */,
+                               491330BC1372616300DFB46D /* b2LineJoint.cpp */,
+                               491330BD1372616300DFB46D /* b2LineJoint.h */,
+                               491330BE1372616300DFB46D /* b2MouseJoint.cpp */,
+                               491330BF1372616300DFB46D /* b2MouseJoint.h */,
+                               491330C01372616300DFB46D /* b2PrismaticJoint.cpp */,
+                               491330C11372616300DFB46D /* b2PrismaticJoint.h */,
+                               491330C21372616300DFB46D /* b2PulleyJoint.cpp */,
+                               491330C31372616300DFB46D /* b2PulleyJoint.h */,
+                               491330C41372616300DFB46D /* b2RevoluteJoint.cpp */,
+                               491330C51372616300DFB46D /* b2RevoluteJoint.h */,
+                               491330C61372616300DFB46D /* b2WeldJoint.cpp */,
+                               491330C71372616300DFB46D /* b2WeldJoint.h */,
+                       );
+                       path = Joints;
+                       sourceTree = "<group>";
+               };
+               491331291372630F00DFB46D /* Frameworks */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491331271372630700DFB46D /* UIKit.framework */,
+                               49133122137262F200DFB46D /* Foundation.framework */,
+                       );
+                       name = Frameworks;
+                       sourceTree = "<group>";
+               };
+/* End PBXGroup section */
+
+/* Begin PBXHeadersBuildPhase section */
+               4913305D1372610400DFB46D /* Headers */ = {
+                       isa = PBXHeadersBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               491330C81372616300DFB46D /* Box2D.h in Headers */,
+                               491330CA1372616300DFB46D /* b2BroadPhase.h in Headers */,
+                               491330CE1372616300DFB46D /* b2Collision.h in Headers */,
+                               491330D01372616300DFB46D /* b2Distance.h in Headers */,
+                               491330D21372616300DFB46D /* b2DynamicTree.h in Headers */,
+                               491330D41372616300DFB46D /* b2TimeOfImpact.h in Headers */,
+                               491330D61372616300DFB46D /* b2CircleShape.h in Headers */,
+                               491330D81372616300DFB46D /* b2PolygonShape.h in Headers */,
+                               491330D91372616300DFB46D /* b2Shape.h in Headers */,
+                               491330DB1372616300DFB46D /* b2BlockAllocator.h in Headers */,
+                               491330DD1372616300DFB46D /* b2Math.h in Headers */,
+                               491330DF1372616300DFB46D /* b2Settings.h in Headers */,
+                               491330E11372616300DFB46D /* b2StackAllocator.h in Headers */,
+                               491330E31372616300DFB46D /* b2Body.h in Headers */,
+                               491330E51372616300DFB46D /* b2ContactManager.h in Headers */,
+                               491330E71372616300DFB46D /* b2Fixture.h in Headers */,
+                               491330E91372616300DFB46D /* b2Island.h in Headers */,
+                               491330EA1372616300DFB46D /* b2TimeStep.h in Headers */,
+                               491330EC1372616300DFB46D /* b2World.h in Headers */,
+                               491330EE1372616300DFB46D /* b2WorldCallbacks.h in Headers */,
+                               491330F01372616300DFB46D /* b2CircleContact.h in Headers */,
+                               491330F21372616300DFB46D /* b2Contact.h in Headers */,
+                               491330F41372616300DFB46D /* b2ContactSolver.h in Headers */,
+                               491330F61372616300DFB46D /* b2PolygonAndCircleContact.h in Headers */,
+                               491330F81372616300DFB46D /* b2PolygonContact.h in Headers */,
+                               491330FA1372616300DFB46D /* b2TOISolver.h in Headers */,
+                               491330FC1372616300DFB46D /* b2DistanceJoint.h in Headers */,
+                               491330FE1372616300DFB46D /* b2FrictionJoint.h in Headers */,
+                               491331001372616300DFB46D /* b2GearJoint.h in Headers */,
+                               491331021372616300DFB46D /* b2Joint.h in Headers */,
+                               491331041372616300DFB46D /* b2LineJoint.h in Headers */,
+                               491331061372616300DFB46D /* b2MouseJoint.h in Headers */,
+                               491331081372616300DFB46D /* b2PrismaticJoint.h in Headers */,
+                               4913310A1372616300DFB46D /* b2PulleyJoint.h in Headers */,
+                               4913310C1372616300DFB46D /* b2RevoluteJoint.h in Headers */,
+                               4913310E1372616300DFB46D /* b2WeldJoint.h in Headers */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXHeadersBuildPhase section */
+
+/* Begin PBXNativeTarget section */
+               4913305E1372610400DFB46D /* Box2D */ = {
+                       isa = PBXNativeTarget;
+                       buildConfigurationList = 491330691372610400DFB46D /* Build configuration list for PBXNativeTarget "Box2D" */;
+                       buildPhases = (
+                               4913305B1372610400DFB46D /* Sources */,
+                               4913305C1372610400DFB46D /* Frameworks */,
+                               4913305D1372610400DFB46D /* Headers */,
+                       );
+                       buildRules = (
+                       );
+                       dependencies = (
+                       );
+                       name = Box2D;
+                       productName = Box2D;
+                       productReference = 4913305F1372610400DFB46D /* libBox2D.a */;
+                       productType = "com.apple.product-type.library.static";
+               };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+               491330561372610400DFB46D /* Project object */ = {
+                       isa = PBXProject;
+                       buildConfigurationList = 491330591372610400DFB46D /* Build configuration list for PBXProject "box2d-ios" */;
+                       compatibilityVersion = "Xcode 3.2";
+                       developmentRegion = English;
+                       hasScannedForEncodings = 0;
+                       knownRegions = (
+                               en,
+                       );
+                       mainGroup = 491330541372610400DFB46D;
+                       productRefGroup = 491330601372610400DFB46D /* Products */;
+                       projectDirPath = "";
+                       projectRoot = "";
+                       targets = (
+                               4913305E1372610400DFB46D /* Box2D */,
+                       );
+               };
+/* End PBXProject section */
+
+/* Begin PBXSourcesBuildPhase section */
+               4913305B1372610400DFB46D /* Sources */ = {
+                       isa = PBXSourcesBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               491330C91372616300DFB46D /* b2BroadPhase.cpp in Sources */,
+                               491330CB1372616300DFB46D /* b2CollideCircle.cpp in Sources */,
+                               491330CC1372616300DFB46D /* b2CollidePolygon.cpp in Sources */,
+                               491330CD1372616300DFB46D /* b2Collision.cpp in Sources */,
+                               491330CF1372616300DFB46D /* b2Distance.cpp in Sources */,
+                               491330D11372616300DFB46D /* b2DynamicTree.cpp in Sources */,
+                               491330D31372616300DFB46D /* b2TimeOfImpact.cpp in Sources */,
+                               491330D51372616300DFB46D /* b2CircleShape.cpp in Sources */,
+                               491330D71372616300DFB46D /* b2PolygonShape.cpp in Sources */,
+                               491330DA1372616300DFB46D /* b2BlockAllocator.cpp in Sources */,
+                               491330DC1372616300DFB46D /* b2Math.cpp in Sources */,
+                               491330DE1372616300DFB46D /* b2Settings.cpp in Sources */,
+                               491330E01372616300DFB46D /* b2StackAllocator.cpp in Sources */,
+                               491330E21372616300DFB46D /* b2Body.cpp in Sources */,
+                               491330E41372616300DFB46D /* b2ContactManager.cpp in Sources */,
+                               491330E61372616300DFB46D /* b2Fixture.cpp in Sources */,
+                               491330E81372616300DFB46D /* b2Island.cpp in Sources */,
+                               491330EB1372616300DFB46D /* b2World.cpp in Sources */,
+                               491330ED1372616300DFB46D /* b2WorldCallbacks.cpp in Sources */,
+                               491330EF1372616300DFB46D /* b2CircleContact.cpp in Sources */,
+                               491330F11372616300DFB46D /* b2Contact.cpp in Sources */,
+                               491330F31372616300DFB46D /* b2ContactSolver.cpp in Sources */,
+                               491330F51372616300DFB46D /* b2PolygonAndCircleContact.cpp in Sources */,
+                               491330F71372616300DFB46D /* b2PolygonContact.cpp in Sources */,
+                               491330F91372616300DFB46D /* b2TOISolver.cpp in Sources */,
+                               491330FB1372616300DFB46D /* b2DistanceJoint.cpp in Sources */,
+                               491330FD1372616300DFB46D /* b2FrictionJoint.cpp in Sources */,
+                               491330FF1372616300DFB46D /* b2GearJoint.cpp in Sources */,
+                               491331011372616300DFB46D /* b2Joint.cpp in Sources */,
+                               491331031372616300DFB46D /* b2LineJoint.cpp in Sources */,
+                               491331051372616300DFB46D /* b2MouseJoint.cpp in Sources */,
+                               491331071372616300DFB46D /* b2PrismaticJoint.cpp in Sources */,
+                               491331091372616300DFB46D /* b2PulleyJoint.cpp in Sources */,
+                               4913310B1372616300DFB46D /* b2RevoluteJoint.cpp in Sources */,
+                               4913310D1372616300DFB46D /* b2WeldJoint.cpp in Sources */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin XCBuildConfiguration section */
+               491330671372610400DFB46D /* Debug */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+                               GCC_C_LANGUAGE_STANDARD = gnu99;
+                               GCC_OPTIMIZATION_LEVEL = 0;
+                               GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
+                               GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+                               GCC_VERSION = 4.2;
+                               GCC_WARN_ABOUT_RETURN_TYPE = YES;
+                               GCC_WARN_UNUSED_VARIABLE = YES;
+                               IPHONEOS_DEPLOYMENT_TARGET = 4.3;
+                               SDKROOT = iphoneos;
+                       };
+                       name = Debug;
+               };
+               491330681372610400DFB46D /* Release */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+                               GCC_C_LANGUAGE_STANDARD = gnu99;
+                               GCC_VERSION = 4.2;
+                               GCC_WARN_ABOUT_RETURN_TYPE = YES;
+                               GCC_WARN_UNUSED_VARIABLE = YES;
+                               IPHONEOS_DEPLOYMENT_TARGET = 4.3;
+                               SDKROOT = iphoneos;
+                       };
+                       name = Release;
+               };
+               4913306A1372610400DFB46D /* Debug */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ALWAYS_SEARCH_USER_PATHS = YES;
+                               DSTROOT = /tmp/Box2D.dst;
+                               GCC_PRECOMPILE_PREFIX_HEADER = YES;
+                               GCC_PREFIX_HEADER = "Box2D/Box2D-Prefix.pch";
+                               PRODUCT_NAME = "$(TARGET_NAME)";
+                               TARGETED_DEVICE_FAMILY = "1,2";
+                               USER_HEADER_SEARCH_PATHS = "./src/**";
+                       };
+                       name = Debug;
+               };
+               4913306B1372610400DFB46D /* Release */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ALWAYS_SEARCH_USER_PATHS = YES;
+                               DSTROOT = /tmp/Box2D.dst;
+                               GCC_PRECOMPILE_PREFIX_HEADER = YES;
+                               GCC_PREFIX_HEADER = "Box2D/Box2D-Prefix.pch";
+                               PRODUCT_NAME = "$(TARGET_NAME)";
+                               TARGETED_DEVICE_FAMILY = "1,2";
+                               USER_HEADER_SEARCH_PATHS = "./src/**";
+                       };
+                       name = Release;
+               };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+               491330591372610400DFB46D /* Build configuration list for PBXProject "box2d-ios" */ = {
+                       isa = XCConfigurationList;
+                       buildConfigurations = (
+                               491330671372610400DFB46D /* Debug */,
+                               491330681372610400DFB46D /* Release */,
+                       );
+                       defaultConfigurationIsVisible = 0;
+                       defaultConfigurationName = Release;
+               };
+               491330691372610400DFB46D /* Build configuration list for PBXNativeTarget "Box2D" */ = {
+                       isa = XCConfigurationList;
+                       buildConfigurations = (
+                               4913306A1372610400DFB46D /* Debug */,
+                               4913306B1372610400DFB46D /* Release */,
+                       );
+                       defaultConfigurationIsVisible = 0;
+                       defaultConfigurationName = Release;
+               };
+/* End XCConfigurationList section */
+       };
+       rootObject = 491330561372610400DFB46D /* Project object */;
+}
diff --git a/libs/box2d/box2d-iphone.xcodeproj/project.pbxproj b/libs/box2d/box2d-iphone.xcodeproj/project.pbxproj
new file mode 100644 (file)
index 0000000..354b97c
--- /dev/null
@@ -0,0 +1,560 @@
+// !$*UTF8*$!
+{
+       archiveVersion = 1;
+       classes = {
+       };
+       objectVersion = 46;
+       objects = {
+
+/* Begin PBXBuildFile section */
+               4913316E1372645C00DFB46D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4913316D1372645C00DFB46D /* UIKit.framework */; };
+               491331701372645C00DFB46D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4913316F1372645C00DFB46D /* Foundation.framework */; };
+               491331721372645C00DFB46D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 491331711372645C00DFB46D /* CoreGraphics.framework */; };
+               491331A91372653600DFB46D /* Box2DAppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4913319A1372653600DFB46D /* Box2DAppDelegate.mm */; };
+               491331AA1372653600DFB46D /* Box2DView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4913319C1372653600DFB46D /* Box2DView.mm */; };
+               491331AB1372653600DFB46D /* GLES-Render.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4913319F1372653600DFB46D /* GLES-Render.mm */; };
+               491331AC1372653600DFB46D /* iPhoneTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 491331A11372653600DFB46D /* iPhoneTest.mm */; };
+               491331AD1372653600DFB46D /* iPhoneTestEntries.mm in Sources */ = {isa = PBXBuildFile; fileRef = 491331A21372653600DFB46D /* iPhoneTestEntries.mm */; };
+               491331AE1372653600DFB46D /* TestEntriesViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 491331A41372653600DFB46D /* TestEntriesViewController.mm */; };
+               491331AF1372653600DFB46D /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 491331A51372653600DFB46D /* Icon.png */; };
+               491331B01372653600DFB46D /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 491331A61372653600DFB46D /* Info.plist */; };
+               491331B11372653600DFB46D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 491331A71372653600DFB46D /* main.m */; };
+               491331B21372653600DFB46D /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 491331A81372653600DFB46D /* MainWindow.xib */; };
+               491331C11372663200DFB46D /* libBox2D.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 491331C01372663200DFB46D /* libBox2D.a */; };
+               4913323813726B1F00DFB46D /* ApplyForce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913320D13726B1F00DFB46D /* ApplyForce.h */; };
+               4913323913726B1F00DFB46D /* BodyTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913320E13726B1F00DFB46D /* BodyTypes.h */; };
+               4913323A13726B1F00DFB46D /* Breakable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913320F13726B1F00DFB46D /* Breakable.h */; };
+               4913323B13726B1F00DFB46D /* Bridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321013726B1F00DFB46D /* Bridge.h */; };
+               4913323C13726B1F00DFB46D /* BulletTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321113726B1F00DFB46D /* BulletTest.h */; };
+               4913323D13726B1F00DFB46D /* Cantilever.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321213726B1F00DFB46D /* Cantilever.h */; };
+               4913323E13726B1F00DFB46D /* Car.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321313726B1F00DFB46D /* Car.h */; };
+               4913323F13726B1F00DFB46D /* Chain.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321413726B1F00DFB46D /* Chain.h */; };
+               4913324013726B1F00DFB46D /* CharacterCollision.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321513726B1F00DFB46D /* CharacterCollision.h */; };
+               4913324113726B1F00DFB46D /* CollisionFiltering.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321613726B1F00DFB46D /* CollisionFiltering.h */; };
+               4913324213726B1F00DFB46D /* CollisionProcessing.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321713726B1F00DFB46D /* CollisionProcessing.h */; };
+               4913324313726B1F00DFB46D /* CompoundShapes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321813726B1F00DFB46D /* CompoundShapes.h */; };
+               4913324413726B1F00DFB46D /* Confined.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321913726B1F00DFB46D /* Confined.h */; };
+               4913324513726B1F00DFB46D /* ContinuousTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321A13726B1F00DFB46D /* ContinuousTest.h */; };
+               4913324613726B1F00DFB46D /* DistanceTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321B13726B1F00DFB46D /* DistanceTest.h */; };
+               4913324713726B1F00DFB46D /* Dominos.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321C13726B1F00DFB46D /* Dominos.h */; };
+               4913324813726B1F00DFB46D /* DynamicTreeTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321D13726B1F00DFB46D /* DynamicTreeTest.h */; };
+               4913324913726B1F00DFB46D /* EdgeShapes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321E13726B1F00DFB46D /* EdgeShapes.h */; };
+               4913324A13726B1F00DFB46D /* EdgeTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913321F13726B1F00DFB46D /* EdgeTest.h */; };
+               4913324B13726B1F00DFB46D /* Gears.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322013726B1F00DFB46D /* Gears.h */; };
+               4913324C13726B1F00DFB46D /* LineJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322113726B1F00DFB46D /* LineJoint.h */; };
+               4913324D13726B1F00DFB46D /* OneSidedPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322213726B1F00DFB46D /* OneSidedPlatform.h */; };
+               4913324E13726B1F00DFB46D /* Pinball.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322313726B1F00DFB46D /* Pinball.h */; };
+               4913324F13726B1F00DFB46D /* PolyCollision.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322413726B1F00DFB46D /* PolyCollision.h */; };
+               4913325013726B1F00DFB46D /* PolyShapes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322513726B1F00DFB46D /* PolyShapes.h */; };
+               4913325113726B1F00DFB46D /* Prismatic.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322613726B1F00DFB46D /* Prismatic.h */; };
+               4913325213726B1F00DFB46D /* Pulleys.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322713726B1F00DFB46D /* Pulleys.h */; };
+               4913325313726B1F00DFB46D /* Pyramid.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322813726B1F00DFB46D /* Pyramid.h */; };
+               4913325413726B1F00DFB46D /* RayCast.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322913726B1F00DFB46D /* RayCast.h */; };
+               4913325513726B1F00DFB46D /* Revolute.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322A13726B1F00DFB46D /* Revolute.h */; };
+               4913325613726B1F00DFB46D /* Rope.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322B13726B1F00DFB46D /* Rope.h */; };
+               4913325713726B1F00DFB46D /* RopeJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322C13726B1F00DFB46D /* RopeJoint.h */; };
+               4913325813726B1F00DFB46D /* SensorTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322D13726B1F00DFB46D /* SensorTest.h */; };
+               4913325913726B1F00DFB46D /* ShapeEditing.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322E13726B1F00DFB46D /* ShapeEditing.h */; };
+               4913325A13726B1F00DFB46D /* SliderCrank.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913322F13726B1F00DFB46D /* SliderCrank.h */; };
+               4913325B13726B1F00DFB46D /* SphereStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323013726B1F00DFB46D /* SphereStack.h */; };
+               4913325C13726B1F00DFB46D /* TheoJansen.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323113726B1F00DFB46D /* TheoJansen.h */; };
+               4913325D13726B1F00DFB46D /* Tiles.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323213726B1F00DFB46D /* Tiles.h */; };
+               4913325E13726B1F00DFB46D /* TimeOfImpact.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323313726B1F00DFB46D /* TimeOfImpact.h */; };
+               4913325F13726B1F00DFB46D /* VaryingFriction.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323413726B1F00DFB46D /* VaryingFriction.h */; };
+               4913326013726B1F00DFB46D /* VaryingRestitution.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323513726B1F00DFB46D /* VaryingRestitution.h */; };
+               4913326113726B1F00DFB46D /* VerticalStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323613726B1F00DFB46D /* VerticalStack.h */; };
+               4913326213726B1F00DFB46D /* Web.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913323713726B1F00DFB46D /* Web.h */; };
+               4913326413726B5D00DFB46D /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4913326313726B5D00DFB46D /* OpenGLES.framework */; };
+               4913326E13726BC800DFB46D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4913326D13726BC800DFB46D /* QuartzCore.framework */; };
+               4913326F13726D2F00DFB46D /* Box2DAppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 491331991372653600DFB46D /* Box2DAppDelegate.h */; };
+               4913327013726D2F00DFB46D /* Box2DView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913319B1372653600DFB46D /* Box2DView.h */; };
+               4913327113726D2F00DFB46D /* Delegates.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913319D1372653600DFB46D /* Delegates.h */; };
+               4913327213726D2F00DFB46D /* GLES-Render.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913319E1372653600DFB46D /* GLES-Render.h */; };
+               4913327313726D2F00DFB46D /* iPhoneTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 491331A01372653600DFB46D /* iPhoneTest.h */; };
+               4913327413726D2F00DFB46D /* TestEntriesViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 491331A31372653600DFB46D /* TestEntriesViewController.h */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+               491331BB1372661700DFB46D /* PBXContainerItemProxy */ = {
+                       isa = PBXContainerItemProxy;
+                       containerPortal = 491331B41372661600DFB46D /* box2d-ios.xcodeproj */;
+                       proxyType = 2;
+                       remoteGlobalIDString = 4913305F1372610400DFB46D;
+                       remoteInfo = Box2D;
+               };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXFileReference section */
+               491331691372645C00DFB46D /* box2d-iphone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "box2d-iphone.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+               4913316D1372645C00DFB46D /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
+               4913316F1372645C00DFB46D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
+               491331711372645C00DFB46D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
+               491331971372653600DFB46D /* Box2D_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Box2D_Prefix.pch; sourceTree = "<group>"; };
+               491331991372653600DFB46D /* Box2DAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Box2DAppDelegate.h; sourceTree = "<group>"; };
+               4913319A1372653600DFB46D /* Box2DAppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = Box2DAppDelegate.mm; sourceTree = "<group>"; };
+               4913319B1372653600DFB46D /* Box2DView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Box2DView.h; sourceTree = "<group>"; };
+               4913319C1372653600DFB46D /* Box2DView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = Box2DView.mm; sourceTree = "<group>"; };
+               4913319D1372653600DFB46D /* Delegates.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Delegates.h; sourceTree = "<group>"; };
+               4913319E1372653600DFB46D /* GLES-Render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GLES-Render.h"; sourceTree = "<group>"; };
+               4913319F1372653600DFB46D /* GLES-Render.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = "GLES-Render.mm"; sourceTree = "<group>"; };
+               491331A01372653600DFB46D /* iPhoneTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iPhoneTest.h; sourceTree = "<group>"; };
+               491331A11372653600DFB46D /* iPhoneTest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = iPhoneTest.mm; sourceTree = "<group>"; };
+               491331A21372653600DFB46D /* iPhoneTestEntries.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = iPhoneTestEntries.mm; sourceTree = "<group>"; };
+               491331A31372653600DFB46D /* TestEntriesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestEntriesViewController.h; sourceTree = "<group>"; };
+               491331A41372653600DFB46D /* TestEntriesViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TestEntriesViewController.mm; sourceTree = "<group>"; };
+               491331A51372653600DFB46D /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
+               491331A61372653600DFB46D /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+               491331A71372653600DFB46D /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
+               491331A81372653600DFB46D /* MainWindow.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = "<group>"; };
+               491331B41372661600DFB46D /* box2d-ios.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = "box2d-ios.xcodeproj"; sourceTree = SOURCE_ROOT; };
+               491331C01372663200DFB46D /* libBox2D.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libBox2D.a; sourceTree = SOURCE_ROOT; };
+               4913320D13726B1F00DFB46D /* ApplyForce.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyForce.h; sourceTree = "<group>"; };
+               4913320E13726B1F00DFB46D /* BodyTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BodyTypes.h; sourceTree = "<group>"; };
+               4913320F13726B1F00DFB46D /* Breakable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Breakable.h; sourceTree = "<group>"; };
+               4913321013726B1F00DFB46D /* Bridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bridge.h; sourceTree = "<group>"; };
+               4913321113726B1F00DFB46D /* BulletTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BulletTest.h; sourceTree = "<group>"; };
+               4913321213726B1F00DFB46D /* Cantilever.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cantilever.h; sourceTree = "<group>"; };
+               4913321313726B1F00DFB46D /* Car.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Car.h; sourceTree = "<group>"; };
+               4913321413726B1F00DFB46D /* Chain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Chain.h; sourceTree = "<group>"; };
+               4913321513726B1F00DFB46D /* CharacterCollision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharacterCollision.h; sourceTree = "<group>"; };
+               4913321613726B1F00DFB46D /* CollisionFiltering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CollisionFiltering.h; sourceTree = "<group>"; };
+               4913321713726B1F00DFB46D /* CollisionProcessing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CollisionProcessing.h; sourceTree = "<group>"; };
+               4913321813726B1F00DFB46D /* CompoundShapes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CompoundShapes.h; sourceTree = "<group>"; };
+               4913321913726B1F00DFB46D /* Confined.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Confined.h; sourceTree = "<group>"; };
+               4913321A13726B1F00DFB46D /* ContinuousTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContinuousTest.h; sourceTree = "<group>"; };
+               4913321B13726B1F00DFB46D /* DistanceTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DistanceTest.h; sourceTree = "<group>"; };
+               4913321C13726B1F00DFB46D /* Dominos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dominos.h; sourceTree = "<group>"; };
+               4913321D13726B1F00DFB46D /* DynamicTreeTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DynamicTreeTest.h; sourceTree = "<group>"; };
+               4913321E13726B1F00DFB46D /* EdgeShapes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdgeShapes.h; sourceTree = "<group>"; };
+               4913321F13726B1F00DFB46D /* EdgeTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EdgeTest.h; sourceTree = "<group>"; };
+               4913322013726B1F00DFB46D /* Gears.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Gears.h; sourceTree = "<group>"; };
+               4913322113726B1F00DFB46D /* LineJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LineJoint.h; sourceTree = "<group>"; };
+               4913322213726B1F00DFB46D /* OneSidedPlatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OneSidedPlatform.h; sourceTree = "<group>"; };
+               4913322313726B1F00DFB46D /* Pinball.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pinball.h; sourceTree = "<group>"; };
+               4913322413726B1F00DFB46D /* PolyCollision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PolyCollision.h; sourceTree = "<group>"; };
+               4913322513726B1F00DFB46D /* PolyShapes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PolyShapes.h; sourceTree = "<group>"; };
+               4913322613726B1F00DFB46D /* Prismatic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Prismatic.h; sourceTree = "<group>"; };
+               4913322713726B1F00DFB46D /* Pulleys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pulleys.h; sourceTree = "<group>"; };
+               4913322813726B1F00DFB46D /* Pyramid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pyramid.h; sourceTree = "<group>"; };
+               4913322913726B1F00DFB46D /* RayCast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RayCast.h; sourceTree = "<group>"; };
+               4913322A13726B1F00DFB46D /* Revolute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Revolute.h; sourceTree = "<group>"; };
+               4913322B13726B1F00DFB46D /* Rope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Rope.h; sourceTree = "<group>"; };
+               4913322C13726B1F00DFB46D /* RopeJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RopeJoint.h; sourceTree = "<group>"; };
+               4913322D13726B1F00DFB46D /* SensorTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorTest.h; sourceTree = "<group>"; };
+               4913322E13726B1F00DFB46D /* ShapeEditing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShapeEditing.h; sourceTree = "<group>"; };
+               4913322F13726B1F00DFB46D /* SliderCrank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SliderCrank.h; sourceTree = "<group>"; };
+               4913323013726B1F00DFB46D /* SphereStack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SphereStack.h; sourceTree = "<group>"; };
+               4913323113726B1F00DFB46D /* TheoJansen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TheoJansen.h; sourceTree = "<group>"; };
+               4913323213726B1F00DFB46D /* Tiles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tiles.h; sourceTree = "<group>"; };
+               4913323313726B1F00DFB46D /* TimeOfImpact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeOfImpact.h; sourceTree = "<group>"; };
+               4913323413726B1F00DFB46D /* VaryingFriction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VaryingFriction.h; sourceTree = "<group>"; };
+               4913323513726B1F00DFB46D /* VaryingRestitution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VaryingRestitution.h; sourceTree = "<group>"; };
+               4913323613726B1F00DFB46D /* VerticalStack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VerticalStack.h; sourceTree = "<group>"; };
+               4913323713726B1F00DFB46D /* Web.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Web.h; sourceTree = "<group>"; };
+               4913326313726B5D00DFB46D /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
+               4913326D13726BC800DFB46D /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+               491331661372645C00DFB46D /* Frameworks */ = {
+                       isa = PBXFrameworksBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               4913326E13726BC800DFB46D /* QuartzCore.framework in Frameworks */,
+                               4913326413726B5D00DFB46D /* OpenGLES.framework in Frameworks */,
+                               4913316E1372645C00DFB46D /* UIKit.framework in Frameworks */,
+                               491331701372645C00DFB46D /* Foundation.framework in Frameworks */,
+                               491331721372645C00DFB46D /* CoreGraphics.framework in Frameworks */,
+                               491331C11372663200DFB46D /* libBox2D.a in Frameworks */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+               4913315E1372645C00DFB46D = {
+                       isa = PBXGroup;
+                       children = (
+                               491331B41372661600DFB46D /* box2d-ios.xcodeproj */,
+                               491331961372653600DFB46D /* iPhone */,
+                               4913320C13726B1F00DFB46D /* Tests */,
+                               491331B31372654900DFB46D /* Resources */,
+                               4913316C1372645C00DFB46D /* Frameworks */,
+                               4913316A1372645C00DFB46D /* Products */,
+                       );
+                       sourceTree = "<group>";
+               };
+               4913316A1372645C00DFB46D /* Products */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491331691372645C00DFB46D /* box2d-iphone.app */,
+                       );
+                       name = Products;
+                       sourceTree = "<group>";
+               };
+               4913316C1372645C00DFB46D /* Frameworks */ = {
+                       isa = PBXGroup;
+                       children = (
+                               4913326D13726BC800DFB46D /* QuartzCore.framework */,
+                               4913326313726B5D00DFB46D /* OpenGLES.framework */,
+                               491331C01372663200DFB46D /* libBox2D.a */,
+                               4913316D1372645C00DFB46D /* UIKit.framework */,
+                               4913316F1372645C00DFB46D /* Foundation.framework */,
+                               491331711372645C00DFB46D /* CoreGraphics.framework */,
+                       );
+                       name = Frameworks;
+                       sourceTree = "<group>";
+               };
+               491331961372653600DFB46D /* iPhone */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491331971372653600DFB46D /* Box2D_Prefix.pch */,
+                               491331981372653600DFB46D /* Classes */,
+                               491331A71372653600DFB46D /* main.m */,
+                               491331A81372653600DFB46D /* MainWindow.xib */,
+                       );
+                       path = iPhone;
+                       sourceTree = "<group>";
+               };
+               491331981372653600DFB46D /* Classes */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491331991372653600DFB46D /* Box2DAppDelegate.h */,
+                               4913319A1372653600DFB46D /* Box2DAppDelegate.mm */,
+                               4913319B1372653600DFB46D /* Box2DView.h */,
+                               4913319C1372653600DFB46D /* Box2DView.mm */,
+                               4913319D1372653600DFB46D /* Delegates.h */,
+                               4913319E1372653600DFB46D /* GLES-Render.h */,
+                               4913319F1372653600DFB46D /* GLES-Render.mm */,
+                               491331A01372653600DFB46D /* iPhoneTest.h */,
+                               491331A11372653600DFB46D /* iPhoneTest.mm */,
+                               491331A21372653600DFB46D /* iPhoneTestEntries.mm */,
+                               491331A31372653600DFB46D /* TestEntriesViewController.h */,
+                               491331A41372653600DFB46D /* TestEntriesViewController.mm */,
+                       );
+                       path = Classes;
+                       sourceTree = "<group>";
+               };
+               491331B31372654900DFB46D /* Resources */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491331A51372653600DFB46D /* Icon.png */,
+                               491331A61372653600DFB46D /* Info.plist */,
+                       );
+                       name = Resources;
+                       path = iPhone;
+                       sourceTree = "<group>";
+               };
+               491331B51372661600DFB46D /* Products */ = {
+                       isa = PBXGroup;
+                       children = (
+                               491331BC1372661700DFB46D /* libBox2D.a */,
+                       );
+                       name = Products;
+                       sourceTree = "<group>";
+               };
+               4913320C13726B1F00DFB46D /* Tests */ = {
+                       isa = PBXGroup;
+                       children = (
+                               4913320D13726B1F00DFB46D /* ApplyForce.h */,
+                               4913320E13726B1F00DFB46D /* BodyTypes.h */,
+                               4913320F13726B1F00DFB46D /* Breakable.h */,
+                               4913321013726B1F00DFB46D /* Bridge.h */,
+                               4913321113726B1F00DFB46D /* BulletTest.h */,
+                               4913321213726B1F00DFB46D /* Cantilever.h */,
+                               4913321313726B1F00DFB46D /* Car.h */,
+                               4913321413726B1F00DFB46D /* Chain.h */,
+                               4913321513726B1F00DFB46D /* CharacterCollision.h */,
+                               4913321613726B1F00DFB46D /* CollisionFiltering.h */,
+                               4913321713726B1F00DFB46D /* CollisionProcessing.h */,
+                               4913321813726B1F00DFB46D /* CompoundShapes.h */,
+                               4913321913726B1F00DFB46D /* Confined.h */,
+                               4913321A13726B1F00DFB46D /* ContinuousTest.h */,
+                               4913321B13726B1F00DFB46D /* DistanceTest.h */,
+                               4913321C13726B1F00DFB46D /* Dominos.h */,
+                               4913321D13726B1F00DFB46D /* DynamicTreeTest.h */,
+                               4913321E13726B1F00DFB46D /* EdgeShapes.h */,
+                               4913321F13726B1F00DFB46D /* EdgeTest.h */,
+                               4913322013726B1F00DFB46D /* Gears.h */,
+                               4913322113726B1F00DFB46D /* LineJoint.h */,
+                               4913322213726B1F00DFB46D /* OneSidedPlatform.h */,
+                               4913322313726B1F00DFB46D /* Pinball.h */,
+                               4913322413726B1F00DFB46D /* PolyCollision.h */,
+                               4913322513726B1F00DFB46D /* PolyShapes.h */,
+                               4913322613726B1F00DFB46D /* Prismatic.h */,
+                               4913322713726B1F00DFB46D /* Pulleys.h */,
+                               4913322813726B1F00DFB46D /* Pyramid.h */,
+                               4913322913726B1F00DFB46D /* RayCast.h */,
+                               4913322A13726B1F00DFB46D /* Revolute.h */,
+                               4913322B13726B1F00DFB46D /* Rope.h */,
+                               4913322C13726B1F00DFB46D /* RopeJoint.h */,
+                               4913322D13726B1F00DFB46D /* SensorTest.h */,
+                               4913322E13726B1F00DFB46D /* ShapeEditing.h */,
+                               4913322F13726B1F00DFB46D /* SliderCrank.h */,
+                               4913323013726B1F00DFB46D /* SphereStack.h */,
+                               4913323113726B1F00DFB46D /* TheoJansen.h */,
+                               4913323213726B1F00DFB46D /* Tiles.h */,
+                               4913323313726B1F00DFB46D /* TimeOfImpact.h */,
+                               4913323413726B1F00DFB46D /* VaryingFriction.h */,
+                               4913323513726B1F00DFB46D /* VaryingRestitution.h */,
+                               4913323613726B1F00DFB46D /* VerticalStack.h */,
+                               4913323713726B1F00DFB46D /* Web.h */,
+                       );
+                       name = Tests;
+                       path = src/Tests;
+                       sourceTree = "<group>";
+               };
+/* End PBXGroup section */
+
+/* Begin PBXHeadersBuildPhase section */
+               491331E71372682200DFB46D /* Headers */ = {
+                       isa = PBXHeadersBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               4913326F13726D2F00DFB46D /* Box2DAppDelegate.h in Headers */,
+                               4913327013726D2F00DFB46D /* Box2DView.h in Headers */,
+                               4913327113726D2F00DFB46D /* Delegates.h in Headers */,
+                               4913327213726D2F00DFB46D /* GLES-Render.h in Headers */,
+                               4913327313726D2F00DFB46D /* iPhoneTest.h in Headers */,
+                               4913327413726D2F00DFB46D /* TestEntriesViewController.h in Headers */,
+                               4913323813726B1F00DFB46D /* ApplyForce.h in Headers */,
+                               4913323913726B1F00DFB46D /* BodyTypes.h in Headers */,
+                               4913323A13726B1F00DFB46D /* Breakable.h in Headers */,
+                               4913323B13726B1F00DFB46D /* Bridge.h in Headers */,
+                               4913323C13726B1F00DFB46D /* BulletTest.h in Headers */,
+                               4913323D13726B1F00DFB46D /* Cantilever.h in Headers */,
+                               4913323E13726B1F00DFB46D /* Car.h in Headers */,
+                               4913323F13726B1F00DFB46D /* Chain.h in Headers */,
+                               4913324013726B1F00DFB46D /* CharacterCollision.h in Headers */,
+                               4913324113726B1F00DFB46D /* CollisionFiltering.h in Headers */,
+                               4913324213726B1F00DFB46D /* CollisionProcessing.h in Headers */,
+                               4913324313726B1F00DFB46D /* CompoundShapes.h in Headers */,
+                               4913324413726B1F00DFB46D /* Confined.h in Headers */,
+                               4913324513726B1F00DFB46D /* ContinuousTest.h in Headers */,
+                               4913324613726B1F00DFB46D /* DistanceTest.h in Headers */,
+                               4913324713726B1F00DFB46D /* Dominos.h in Headers */,
+                               4913324813726B1F00DFB46D /* DynamicTreeTest.h in Headers */,
+                               4913324913726B1F00DFB46D /* EdgeShapes.h in Headers */,
+                               4913324A13726B1F00DFB46D /* EdgeTest.h in Headers */,
+                               4913324B13726B1F00DFB46D /* Gears.h in Headers */,
+                               4913324C13726B1F00DFB46D /* LineJoint.h in Headers */,
+                               4913324D13726B1F00DFB46D /* OneSidedPlatform.h in Headers */,
+                               4913324E13726B1F00DFB46D /* Pinball.h in Headers */,
+                               4913324F13726B1F00DFB46D /* PolyCollision.h in Headers */,
+                               4913325013726B1F00DFB46D /* PolyShapes.h in Headers */,
+                               4913325113726B1F00DFB46D /* Prismatic.h in Headers */,
+                               4913325213726B1F00DFB46D /* Pulleys.h in Headers */,
+                               4913325313726B1F00DFB46D /* Pyramid.h in Headers */,
+                               4913325413726B1F00DFB46D /* RayCast.h in Headers */,
+                               4913325513726B1F00DFB46D /* Revolute.h in Headers */,
+                               4913325613726B1F00DFB46D /* Rope.h in Headers */,
+                               4913325713726B1F00DFB46D /* RopeJoint.h in Headers */,
+                               4913325813726B1F00DFB46D /* SensorTest.h in Headers */,
+                               4913325913726B1F00DFB46D /* ShapeEditing.h in Headers */,
+                               4913325A13726B1F00DFB46D /* SliderCrank.h in Headers */,
+                               4913325B13726B1F00DFB46D /* SphereStack.h in Headers */,
+                               4913325C13726B1F00DFB46D /* TheoJansen.h in Headers */,
+                               4913325D13726B1F00DFB46D /* Tiles.h in Headers */,
+                               4913325E13726B1F00DFB46D /* TimeOfImpact.h in Headers */,
+                               4913325F13726B1F00DFB46D /* VaryingFriction.h in Headers */,
+                               4913326013726B1F00DFB46D /* VaryingRestitution.h in Headers */,
+                               4913326113726B1F00DFB46D /* VerticalStack.h in Headers */,
+                               4913326213726B1F00DFB46D /* Web.h in Headers */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXHeadersBuildPhase section */
+
+/* Begin PBXNativeTarget section */
+               491331681372645C00DFB46D /* box2d-iphone */ = {
+                       isa = PBXNativeTarget;
+                       buildConfigurationList = 491331841372645C00DFB46D /* Build configuration list for PBXNativeTarget "box2d-iphone" */;
+                       buildPhases = (
+                               491331651372645C00DFB46D /* Sources */,
+                               491331661372645C00DFB46D /* Frameworks */,
+                               491331671372645C00DFB46D /* Resources */,
+                               491331E71372682200DFB46D /* Headers */,
+                       );
+                       buildRules = (
+                       );
+                       dependencies = (
+                       );
+                       name = "box2d-iphone";
+                       productName = "box2d-iphone";
+                       productReference = 491331691372645C00DFB46D /* box2d-iphone.app */;
+                       productType = "com.apple.product-type.application";
+               };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+               491331601372645C00DFB46D /* Project object */ = {
+                       isa = PBXProject;
+                       buildConfigurationList = 491331631372645C00DFB46D /* Build configuration list for PBXProject "box2d-iphone" */;
+                       compatibilityVersion = "Xcode 3.2";
+                       developmentRegion = English;
+                       hasScannedForEncodings = 0;
+                       knownRegions = (
+                               en,
+                       );
+                       mainGroup = 4913315E1372645C00DFB46D;
+                       productRefGroup = 4913316A1372645C00DFB46D /* Products */;
+                       projectDirPath = "";
+                       projectReferences = (
+                               {
+                                       ProductGroup = 491331B51372661600DFB46D /* Products */;
+                                       ProjectRef = 491331B41372661600DFB46D /* box2d-ios.xcodeproj */;
+                               },
+                       );
+                       projectRoot = "";
+                       targets = (
+                               491331681372645C00DFB46D /* box2d-iphone */,
+                       );
+               };
+/* End PBXProject section */
+
+/* Begin PBXReferenceProxy section */
+               491331BC1372661700DFB46D /* libBox2D.a */ = {
+                       isa = PBXReferenceProxy;
+                       fileType = archive.ar;
+                       path = libBox2D.a;
+                       remoteRef = 491331BB1372661700DFB46D /* PBXContainerItemProxy */;
+                       sourceTree = BUILT_PRODUCTS_DIR;
+               };
+/* End PBXReferenceProxy section */
+
+/* Begin PBXResourcesBuildPhase section */
+               491331671372645C00DFB46D /* Resources */ = {
+                       isa = PBXResourcesBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               491331AF1372653600DFB46D /* Icon.png in Resources */,
+                               491331B01372653600DFB46D /* Info.plist in Resources */,
+                               491331B21372653600DFB46D /* MainWindow.xib in Resources */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+               491331651372645C00DFB46D /* Sources */ = {
+                       isa = PBXSourcesBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               491331A91372653600DFB46D /* Box2DAppDelegate.mm in Sources */,
+                               491331AA1372653600DFB46D /* Box2DView.mm in Sources */,
+                               491331AB1372653600DFB46D /* GLES-Render.mm in Sources */,
+                               491331AC1372653600DFB46D /* iPhoneTest.mm in Sources */,
+                               491331AD1372653600DFB46D /* iPhoneTestEntries.mm in Sources */,
+                               491331AE1372653600DFB46D /* TestEntriesViewController.mm in Sources */,
+                               491331B11372653600DFB46D /* main.m in Sources */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin XCBuildConfiguration section */
+               491331821372645C00DFB46D /* Debug */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+                               "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+                               GCC_C_LANGUAGE_STANDARD = gnu99;
+                               GCC_OPTIMIZATION_LEVEL = 0;
+                               GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
+                               GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+                               GCC_VERSION = com.apple.compilers.llvmgcc42;
+                               GCC_WARN_ABOUT_RETURN_TYPE = YES;
+                               GCC_WARN_UNUSED_VARIABLE = YES;
+                               IPHONEOS_DEPLOYMENT_TARGET = 4.3;
+                               SDKROOT = iphoneos;
+                       };
+                       name = Debug;
+               };
+               491331831372645C00DFB46D /* Release */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+                               "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+                               GCC_C_LANGUAGE_STANDARD = gnu99;
+                               GCC_VERSION = com.apple.compilers.llvmgcc42;
+                               GCC_WARN_ABOUT_RETURN_TYPE = YES;
+                               GCC_WARN_UNUSED_VARIABLE = YES;
+                               IPHONEOS_DEPLOYMENT_TARGET = 4.3;
+                               OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
+                               SDKROOT = iphoneos;
+                       };
+                       name = Release;
+               };
+               491331851372645C00DFB46D /* Debug */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ALWAYS_SEARCH_USER_PATHS = YES;
+                               COPY_PHASE_STRIP = NO;
+                               GCC_DYNAMIC_NO_PIC = NO;
+                               GCC_PRECOMPILE_PREFIX_HEADER = YES;
+                               GCC_PREFIX_HEADER = "box2d-iphone/box2d-iphone-Prefix.pch";
+                               GCC_VERSION = 4.2;
+                               HEADER_SEARCH_PATHS = "./src/**";
+                               INFOPLIST_FILE = "box2d-iphone/box2d-iphone-Info.plist";
+                               LIBRARY_SEARCH_PATHS = (
+                                       "$(inherited)",
+                                       "\"$(SRCROOT)\"",
+                               );
+                               OTHER_LDFLAGS = "-Wl,-search_paths_first";
+                               PREBINDING = NO;
+               &nb