Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 18, 2019 03:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/710bf1ca2689690b2f33e4a1ef4a5977 to your computer and use it in GitHub Desktop.
Save ryantm/710bf1ca2689690b2f33e4a1ef4a5977 to your computer and use it in GitHub Desktop.
/nix/store/s5bp30368lp8d0wdv4mfy2w22a8wj5yk-box2d-2.3.1
├── include
│   └── Box2D
│   ├── Box2D.h
│   ├── Collision
│   │   ├── b2BroadPhase.h
│   │   ├── b2Collision.h
│   │   ├── b2Distance.h
│   │   ├── b2DynamicTree.h
│   │   ├── b2TimeOfImpact.h
│   │   └── Shapes
│   │   ├── b2ChainShape.h
│   │   ├── b2CircleShape.h
│   │   ├── b2EdgeShape.h
│   │   ├── b2PolygonShape.h
│   │   └── b2Shape.h
│   ├── Common
│   │   ├── b2BlockAllocator.h
│   │   ├── b2Draw.h
│   │   ├── b2GrowableStack.h
│   │   ├── b2Math.h
│   │   ├── b2Settings.h
│   │   ├── b2StackAllocator.h
│   │   └── b2Timer.h
│   ├── Dynamics
│   │   ├── b2Body.h
│   │   ├── b2ContactManager.h
│   │   ├── b2Fixture.h
│   │   ├── b2Island.h
│   │   ├── b2TimeStep.h
│   │   ├── b2WorldCallbacks.h
│   │   ├── b2World.h
│   │   ├── Contacts
│   │   │   ├── b2ChainAndCircleContact.h
│   │   │   ├── b2ChainAndPolygonContact.h
│   │   │   ├── b2CircleContact.h
│   │   │   ├── b2Contact.h
│   │   │   ├── b2ContactSolver.h
│   │   │   ├── b2EdgeAndCircleContact.h
│   │   │   ├── b2EdgeAndPolygonContact.h
│   │   │   ├── b2PolygonAndCircleContact.h
│   │   │   └── b2PolygonContact.h
│   │   └── Joints
│   │   ├── b2DistanceJoint.h
│   │   ├── b2FrictionJoint.h
│   │   ├── b2GearJoint.h
│   │   ├── b2Joint.h
│   │   ├── b2MotorJoint.h
│   │   ├── b2MouseJoint.h
│   │   ├── b2PrismaticJoint.h
│   │   ├── b2PulleyJoint.h
│   │   ├── b2RevoluteJoint.h
│   │   ├── b2RopeJoint.h
│   │   ├── b2WeldJoint.h
│   │   └── b2WheelJoint.h
│   └── Rope
│   └── b2Rope.h
└── lib
├── Box2D
│   ├── Box2D-targets.cmake
│   └── Box2D-targets-release.cmake
├── cmake
│   └── Box2D
│   ├── Box2DConfig.cmake
│   └── UseBox2D.cmake
├── libBox2D.a
├── libBox2D.so -> libBox2D.so.2.3.0
└── libBox2D.so.2.3.0
13 directories, 54 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment