[box2d] 28/31: Merge tag 'upstream/2.3.1+ds'

Markus Koschany apo-guest at moszumanska.debian.org
Fri Mar 13 17:28:33 UTC 2015


This is an automated email from the git hooks/post-receive script.

apo-guest pushed a commit to branch master
in repository box2d.

commit bb4dcbe24bac818651c2e796135c630cdeb6c2d4
Merge: 4e578c2 4bff173
Author: Markus Koschany <apo at gambaru.de>
Date:   Fri Mar 13 18:18:28 2015 +0100

    Merge tag 'upstream/2.3.1+ds'
    
    Upstream version 2.3.1+ds
    
    # gpg: Signature made Fri 13 Mar 2015 18:18:22 CET using RSA key ID 513B51E4
    # gpg: Good signature from "Markus Koschany <apo at gambaru.de>" [ultimate]
    # gpg:                 aka "Markus Koschany <markus at koschany.net>" [ultimate]

 Box2D/Box2D/Box2D.h                                |   68 +
 Box2D/Box2D/Box2DConfig.cmake.in                   |   31 +
 Box2D/Box2D/CMakeLists.txt                         |  218 +++
 Box2D/Box2D/Collision/Shapes/b2ChainShape.cpp      |  193 ++
 Box2D/Box2D/Collision/Shapes/b2ChainShape.h        |  105 +
 Box2D/Box2D/Collision/Shapes/b2CircleShape.cpp     |   99 +
 Box2D/Box2D/Collision/Shapes/b2CircleShape.h       |   91 +
 Box2D/Box2D/Collision/Shapes/b2EdgeShape.cpp       |  138 ++
 Box2D/Box2D/Collision/Shapes/b2EdgeShape.h         |   74 +
 Box2D/Box2D/Collision/Shapes/b2PolygonShape.cpp    |  467 +++++
 Box2D/Box2D/Collision/Shapes/b2PolygonShape.h      |  101 +
 Box2D/Box2D/Collision/Shapes/b2Shape.h             |  101 +
 Box2D/Box2D/Collision/b2BroadPhase.cpp             |  119 ++
 Box2D/Box2D/Collision/b2BroadPhase.h               |  257 +++
 Box2D/Box2D/Collision/b2CollideCircle.cpp          |  154 ++
 Box2D/Box2D/Collision/b2CollideEdge.cpp            |  698 +++++++
 Box2D/Box2D/Collision/b2CollidePolygon.cpp         |  239 +++
 Box2D/Box2D/Collision/b2Collision.cpp              |  252 +++
 Box2D/Box2D/Collision/b2Collision.h                |  277 +++
 Box2D/Box2D/Collision/b2Distance.cpp               |  603 ++++++
 Box2D/Box2D/Collision/b2Distance.h                 |  141 ++
 Box2D/Box2D/Collision/b2DynamicTree.cpp            |  778 ++++++++
 Box2D/Box2D/Collision/b2DynamicTree.h              |  289 +++
 Box2D/Box2D/Collision/b2TimeOfImpact.cpp           |  486 +++++
 Box2D/Box2D/Collision/b2TimeOfImpact.h             |   58 +
 .../Box2D}/Common/b2BlockAllocator.cpp             |   28 +-
 {Source => Box2D/Box2D}/Common/b2BlockAllocator.h  |   15 +-
 .../Box2D/Common/b2Draw.cpp                        |   35 +-
 Box2D/Box2D/Common/b2Draw.h                        |   86 +
 Box2D/Box2D/Common/b2GrowableStack.h               |   85 +
 Box2D/Box2D/Common/b2Math.cpp                      |   94 +
 Box2D/Box2D/Common/b2Math.h                        |  720 +++++++
 {Source => Box2D/Box2D}/Common/b2Settings.cpp      |   39 +-
 {Source => Box2D/Box2D}/Common/b2Settings.h        |  135 +-
 .../Box2D}/Common/b2StackAllocator.cpp             |    6 +-
 {Source => Box2D/Box2D}/Common/b2StackAllocator.h  |    4 +-
 Box2D/Box2D/Common/b2Timer.cpp                     |  101 +
 .../Box2D/Common/b2Timer.h                         |   40 +-
 .../Dynamics/Contacts/b2ChainAndCircleContact.cpp  |   53 +
 .../Dynamics/Contacts/b2ChainAndCircleContact.h    |   27 +-
 .../Dynamics/Contacts/b2ChainAndPolygonContact.cpp |   53 +
 .../Dynamics/Contacts/b2ChainAndPolygonContact.h   |   27 +-
 Box2D/Box2D/Dynamics/Contacts/b2CircleContact.cpp  |   52 +
 .../Box2D}/Dynamics/Contacts/b2CircleContact.h     |   23 +-
 Box2D/Box2D/Dynamics/Contacts/b2Contact.cpp        |  247 +++
 Box2D/Box2D/Dynamics/Contacts/b2Contact.h          |  349 ++++
 Box2D/Box2D/Dynamics/Contacts/b2ContactSolver.cpp  |  838 ++++++++
 Box2D/Box2D/Dynamics/Contacts/b2ContactSolver.h    |   95 +
 .../Dynamics/Contacts/b2EdgeAndCircleContact.cpp   |   49 +
 .../Dynamics/Contacts/b2EdgeAndCircleContact.h     |   25 +-
 .../Dynamics/Contacts/b2EdgeAndPolygonContact.cpp  |   49 +
 .../Dynamics/Contacts/b2EdgeAndPolygonContact.h    |   25 +-
 .../Contacts/b2PolygonAndCircleContact.cpp         |   49 +
 .../Dynamics/Contacts/b2PolygonAndCircleContact.h  |   24 +-
 Box2D/Box2D/Dynamics/Contacts/b2PolygonContact.cpp |   52 +
 .../Box2D/Dynamics/Contacts/b2PolygonContact.h     |   21 +-
 Box2D/Box2D/Dynamics/Joints/b2DistanceJoint.cpp    |  260 +++
 Box2D/Box2D/Dynamics/Joints/b2DistanceJoint.h      |  169 ++
 Box2D/Box2D/Dynamics/Joints/b2FrictionJoint.cpp    |  251 +++
 Box2D/Box2D/Dynamics/Joints/b2FrictionJoint.h      |  119 ++
 Box2D/Box2D/Dynamics/Joints/b2GearJoint.cpp        |  419 ++++
 .../Box2D}/Dynamics/Joints/b2GearJoint.h           |   84 +-
 Box2D/Box2D/Dynamics/Joints/b2Joint.cpp            |  211 ++
 {Source => Box2D/Box2D}/Dynamics/Joints/b2Joint.h  |  129 +-
 Box2D/Box2D/Dynamics/Joints/b2MotorJoint.cpp       |  304 +++
 Box2D/Box2D/Dynamics/Joints/b2MotorJoint.h         |  133 ++
 Box2D/Box2D/Dynamics/Joints/b2MouseJoint.cpp       |  222 +++
 .../Box2D}/Dynamics/Joints/b2MouseJoint.h          |   77 +-
 Box2D/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp   |  629 ++++++
 .../Box2D}/Dynamics/Joints/b2PrismaticJoint.h      |  112 +-
 Box2D/Box2D/Dynamics/Joints/b2PulleyJoint.cpp      |  348 ++++
 Box2D/Box2D/Dynamics/Joints/b2PulleyJoint.h        |  152 ++
 Box2D/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp    |  502 +++++
 .../Box2D}/Dynamics/Joints/b2RevoluteJoint.h       |   98 +-
 Box2D/Box2D/Dynamics/Joints/b2RopeJoint.cpp        |  241 +++
 Box2D/Box2D/Dynamics/Joints/b2RopeJoint.h          |  114 ++
 Box2D/Box2D/Dynamics/Joints/b2WeldJoint.cpp        |  344 ++++
 Box2D/Box2D/Dynamics/Joints/b2WeldJoint.h          |  126 ++
 Box2D/Box2D/Dynamics/Joints/b2WheelJoint.cpp       |  419 ++++
 Box2D/Box2D/Dynamics/Joints/b2WheelJoint.h         |  211 ++
 Box2D/Box2D/Dynamics/b2Body.cpp                    |  549 ++++++
 Box2D/Box2D/Dynamics/b2Body.h                      |  860 ++++++++
 Box2D/Box2D/Dynamics/b2ContactManager.cpp          |  296 +++
 .../Box2D}/Dynamics/b2ContactManager.h             |   36 +-
 Box2D/Box2D/Dynamics/b2Fixture.cpp                 |  303 +++
 Box2D/Box2D/Dynamics/b2Fixture.h                   |  345 ++++
 Box2D/Box2D/Dynamics/b2Island.cpp                  |  539 +++++
 {Source => Box2D/Box2D}/Dynamics/b2Island.h        |   27 +-
 Box2D/Box2D/Dynamics/b2TimeStep.h                  |   70 +
 Box2D/Box2D/Dynamics/b2World.cpp                   | 1339 +++++++++++++
 Box2D/Box2D/Dynamics/b2World.h                     |  354 ++++
 .../Box2D}/Dynamics/b2WorldCallbacks.cpp           |   45 +-
 Box2D/Box2D/Dynamics/b2WorldCallbacks.h            |  155 ++
 Box2D/Box2D/Rope/b2Rope.cpp                        |  259 +++
 Box2D/Box2D/Rope/b2Rope.h                          |  115 ++
 Box2D/Box2D/UseBox2D.cmake                         |    9 +
 Box2D/Build/Data/DroidSans.ttf                     |  Bin 0 -> 190044 bytes
 Box2D/Build/Readme.txt                             |    1 +
 Box2D/Build/vs2013/Box2D.sln                       |   74 +
 Box2D/Build/vs2013/Box2D.vcxproj                   |  345 ++++
 Box2D/Build/vs2013/Box2D.vcxproj.filters           |  298 +++
 Box2D/Build/vs2013/HelloWorld.vcxproj              |  217 ++
 Box2D/Build/vs2013/HelloWorld.vcxproj.filters      |    6 +
 Box2D/Build/vs2013/Testbed.vcxproj                 |  288 +++
 Box2D/Build/vs2013/Testbed.vcxproj.filters         |  198 ++
 Box2D/Build/vs2013/glew.vcxproj                    |  166 ++
 Box2D/Build/vs2013/glew.vcxproj.filters            |   11 +
 Box2D/Build/vs2013/glfw.vcxproj                    |  158 ++
 Box2D/Build/vs2013/glfw.vcxproj.filters            |   58 +
 Box2D/Build/xcode5/Box2D.xcodeproj/project.pbxproj | 1237 ++++++++++++
 .../project.xcworkspace/contents.xcworkspacedata   |    7 +
 Box2D/Building.txt                                 |   37 +
 Box2D/CMakeLists.txt                               |   36 +
 Box2D/Changes.txt                                  |    5 +
 Box2D/Documentation/Doxyfile                       | 1789 +++++++++++++++++
 Box2D/Documentation/images/Chain1.png              |  Bin 0 -> 22342 bytes
 Box2D/Documentation/images/Chain1.svg              |  220 +++
 Box2D/Documentation/images/DebugDraw.png           |  Bin 0 -> 48950 bytes
 Box2D/Documentation/images/GhostCollision.png      |  Bin 0 -> 12674 bytes
 Box2D/Documentation/images/GhostCollision.svg      |  255 +++
 Box2D/Documentation/images/GhostVertices.png       |  Bin 0 -> 12272 bytes
 Box2D/Documentation/images/GhostVertices.svg       |  254 +++
 Box2D/Documentation/images/SelfIntersect.png       |  Bin 0 -> 25919 bytes
 Box2D/Documentation/images/SelfIntersect.svg       |  179 ++
 Box2D/Documentation/images/SkinCollision.png       |  Bin 0 -> 13779 bytes
 Box2D/Documentation/images/SkinCollision.svg       |  134 ++
 Box2D/Documentation/images/SkinnedPolygon.png      |  Bin 0 -> 19311 bytes
 Box2D/Documentation/images/SkinnedPolygon.svg      |  198 ++
 Box2D/Documentation/images/Tunnel1.png             |  Bin 0 -> 21021 bytes
 Box2D/Documentation/images/Tunnel1.svg             |  183 ++
 Box2D/Documentation/images/WheelJoint.png          |  Bin 0 -> 8596 bytes
 Box2D/Documentation/images/WheelJoint.svg          |  203 ++
 .../Documentation}/images/bodyOrigin.gif           |  Bin
 Box2D/Documentation/images/captured.png            |  Bin 0 -> 8536 bytes
 Box2D/Documentation/images/captured.svg            |  128 ++
 .../Documentation}/images/convex_concave.gif       |  Bin
 Box2D/Documentation/images/distance.png            |  Bin 0 -> 5735 bytes
 Box2D/Documentation/images/distance.svg            |  178 ++
 .../Documentation}/images/distanceJoint.gif        |  Bin
 .../Documentation}/images/gearJoint.gif            |  Bin
 Box2D/Documentation/images/manifolds.png           |  Bin 0 -> 22609 bytes
 Box2D/Documentation/images/manifolds.svg           |  246 +++
 Box2D/Documentation/images/missed.png              |  Bin 0 -> 7742 bytes
 Box2D/Documentation/images/missed.svg              |  157 ++
 Box2D/Documentation/images/modules.png             |  Bin 0 -> 6447 bytes
 Box2D/Documentation/images/modules.svg             |  213 ++
 .../Documentation}/images/prismaticJoint.gif       |  Bin
 .../Documentation}/images/pulleyJoint.gif          |  Bin
 Box2D/Documentation/images/raycast.png             |  Bin 0 -> 4443 bytes
 Box2D/Documentation/images/raycast.svg             |  154 ++
 Box2D/Documentation/images/regionquery.png         |  Bin 0 -> 3237 bytes
 Box2D/Documentation/images/regionquery.svg         |  151 ++
 .../Documentation}/images/revoluteJoint.gif        |  Bin
 .../Documentation}/images/testbed.gif              |  Bin
 Box2D/Documentation/images/tunneling.png           |  Bin 0 -> 2629 bytes
 Box2D/Documentation/images/tunneling.svg           |  148 ++
 Box2D/Documentation/images/winding.png             |  Bin 0 -> 8463 bytes
 Box2D/Documentation/images/winding.svg             |  236 +++
 Box2D/Documentation/manual.docx                    |  Bin 0 -> 381577 bytes
 Box2D/HelloWorld/CMakeLists.txt                    |    4 +
 {Examples => Box2D}/HelloWorld/HelloWorld.cpp      |   55 +-
 License.txt => Box2D/License.txt                   |    2 +-
 Readme.txt => Box2D/Readme.txt                     |    4 +-
 Box2D/Testbed/CMakeLists.txt                       |   92 +
 Box2D/Testbed/Framework/DebugDraw.cpp              |  827 ++++++++
 .../Testbed/Framework/DebugDraw.h                  |   66 +-
 Box2D/Testbed/Framework/Main.cpp                   |  561 ++++++
 Box2D/Testbed/Framework/RenderGL3.cpp              |  832 ++++++++
 Box2D/Testbed/Framework/RenderGL3.h                |   53 +
 Box2D/Testbed/Framework/Test.cpp                   |  456 +++++
 Box2D/Testbed/Framework/Test.h                     |  199 ++
 Box2D/Testbed/Framework/imgui.cpp                  |  616 ++++++
 Box2D/Testbed/Framework/imgui.h                    |   51 +
 Box2D/Testbed/Framework/stb_truetype.h             | 2066 ++++++++++++++++++++
 .../Testbed/Tests/AddPair.h                        |   60 +-
 Box2D/Testbed/Tests/ApplyForce.h                   |  180 ++
 Box2D/Testbed/Tests/BasicSliderCrank.h             |  103 +
 Box2D/Testbed/Tests/BodyTypes.h                    |  159 ++
 Box2D/Testbed/Tests/Breakable.h                    |  155 ++
 {Examples/TestBed => Box2D/Testbed}/Tests/Bridge.h |   79 +-
 Box2D/Testbed/Tests/BulletTest.h                   |  136 ++
 Box2D/Testbed/Tests/Cantilever.h                   |  211 ++
 Box2D/Testbed/Tests/Car.h                          |  286 +++
 {Examples/TestBed => Box2D/Testbed}/Tests/Chain.h  |   24 +-
 Box2D/Testbed/Tests/CharacterCollision.h           |  253 +++
 .../Testbed}/Tests/CollisionFiltering.h            |   96 +-
 .../Testbed}/Tests/CollisionProcessing.h           |   96 +-
 Box2D/Testbed/Tests/CompoundShapes.h               |  143 ++
 Box2D/Testbed/Tests/Confined.h                     |  167 ++
 Box2D/Testbed/Tests/ContinuousTest.h               |  157 ++
 Box2D/Testbed/Tests/ConvexHull.h                   |  109 ++
 Box2D/Testbed/Tests/ConveyorBelt.h                 |   98 +
 Box2D/Testbed/Tests/DistanceTest.h                 |  135 ++
 .../TestBed => Box2D/Testbed}/Tests/Dominos.h      |  124 +-
 Box2D/Testbed/Tests/DumpShell.h                    |  175 ++
 Box2D/Testbed/Tests/DynamicTreeTest.h              |  357 ++++
 Box2D/Testbed/Tests/EdgeShapes.h                   |  249 +++
 Box2D/Testbed/Tests/EdgeTest.h                     |  109 ++
 {Examples/TestBed => Box2D/Testbed}/Tests/Gears.h  |  116 +-
 Box2D/Testbed/Tests/HeavyOnLight.h                 |   58 +
 Box2D/Testbed/Tests/HeavyOnLightTwo.h              |   91 +
 Box2D/Testbed/Tests/Mobile.h                       |  102 +
 Box2D/Testbed/Tests/MobileBalanced.h               |  105 +
 Box2D/Testbed/Tests/MotorJoint.h                   |  114 ++
 Box2D/Testbed/Tests/OneSidedPlatform.h             |  132 ++
 Box2D/Testbed/Tests/Pinball.h                      |  167 ++
 Box2D/Testbed/Tests/PolyCollision.h                |  122 ++
 Box2D/Testbed/Tests/PolyShapes.h                   |  299 +++
 Box2D/Testbed/Tests/Prismatic.h                    |  107 +
 .../TestBed => Box2D/Testbed}/Tests/Pulleys.h      |   59 +-
 .../TestBed => Box2D/Testbed}/Tests/Pyramid.h      |   45 +-
 Box2D/Testbed/Tests/RayCast.h                      |  481 +++++
 Box2D/Testbed/Tests/Revolute.h                     |  166 ++
 Box2D/Testbed/Tests/Rope.h                         |  101 +
 Box2D/Testbed/Tests/RopeJoint.h                    |  145 ++
 Box2D/Testbed/Tests/SensorTest.h                   |  181 ++
 Box2D/Testbed/Tests/ShapeEditing.h                 |  105 +
 Box2D/Testbed/Tests/SliderCrank.h                  |  156 ++
 Box2D/Testbed/Tests/SphereStack.h                  |   86 +
 .../Testbed}/Tests/TestEntries.cpp                 |  113 +-
 .../TestBed => Box2D/Testbed}/Tests/TheoJansen.h   |  141 +-
 Box2D/Testbed/Tests/Tiles.h                        |  156 ++
 Box2D/Testbed/Tests/TimeOfImpact.h                 |  127 ++
 Box2D/Testbed/Tests/Tumbler.h                      |   99 +
 .../Testbed}/Tests/VaryingFriction.h               |   56 +-
 .../Testbed}/Tests/VaryingRestitution.h            |   29 +-
 Box2D/Testbed/Tests/VerticalStack.h                |  171 ++
 Box2D/Testbed/Tests/Web.h                          |  209 ++
 Box2D/premake4.lua                                 |   67 +
 Build/CodeBlocks/Box2D.workspace                   |   16 -
 Build/CodeBlocks/Engine.cbp                        |  104 -
 Build/CodeBlocks/FreeGLUT.cbp                      |  126 --
 Build/CodeBlocks/GLUI.cbp                          |   92 -
 Build/CodeBlocks/HelloWorld.cbp                    |   46 -
 Build/CodeBlocks/TestBed.cbp                       |   91 -
 Build/VC8/Box2D.sln                                |   51 -
 Build/VC8/Box2D.vcproj                             |  425 ----
 Build/VC8/HelloWorld.vcproj                        |  183 --
 Build/VC8/TestBed.vcproj                           |  352 ----
 Build/VC8/freeglut.vcproj                          |  275 ---
 Build/VC8/glui.vcproj                              |  308 ---
 Build/Xcode/Box2D.xcodeproj/project.pbxproj        | 1223 ------------
 Build/Xcode/Box2DProj.xcconfig                     |    8 -
 Build/Xcode/Box2DTarget.xcconfig                   |   12 -
 Build/Xcode/Box2D_Prefix.pch                       |   13 -
 Build/Xcode/TestBed App-Info.plist                 |   26 -
 Build/Xcode/TestBed.icns                           |  Bin 24132 -> 0 bytes
 Clean.bat                                          |   16 -
 Contrib/Box2D.Net/AABB.cpp                         |   32 -
 Contrib/Box2D.Net/AssemblyInfo.cpp                 |   40 -
 Contrib/Box2D.Net/Body.cpp                         |  243 ---
 Contrib/Box2D.Net/BodyDef.cpp                      |  168 --
 Contrib/Box2D.Net/Box2D.Net.vcproj                 |  291 ---
 Contrib/Box2D.Net/Contact.cpp                      |   53 -
 Contrib/Box2D.Net/Delegates.cpp                    |   28 -
 Contrib/Box2D.Net/Joint.cpp                        |  106 -
 Contrib/Box2D.Net/JointDef.cpp                     |  178 --
 Contrib/Box2D.Net/Manifold.cpp                     |   44 -
 Contrib/Box2D.Net/ManifoldPoint.cpp                |  100 -
 Contrib/Box2D.Net/MassData.cpp                     |   64 -
 Contrib/Box2D.Net/Matrix.cpp                       |   94 -
 Contrib/Box2D.Net/RevoluteJoint.cpp                |  190 --
 Contrib/Box2D.Net/Shape.cpp                        |  153 --
 Contrib/Box2D.Net/Shape.h                          |  125 --
 Contrib/Box2D.Net/ShapeDef.cpp                     |  202 --
 Contrib/Box2D.Net/ShapeType.cpp                    |   18 -
 Contrib/Box2D.Net/Stdafx.h                         |    8 -
 Contrib/Box2D.Net/VariousImplementations.cpp       |   16 -
 Contrib/Box2D.Net/Vector.cpp                       |   81 -
 Contrib/Box2D.Net/World.cpp                        |  162 --
 Contrib/Box2D.Net/XForm.cpp                        |   47 -
 Contrib/TestBed.Net/MainWindow.Designer.cs         |  220 ---
 Contrib/TestBed.Net/MainWindow.cs                  |  132 --
 Contrib/TestBed.Net/MainWindow.resx                |  123 --
 Contrib/TestBed.Net/Program.cs                     |   30 -
 Contrib/TestBed.Net/Properties/AssemblyInfo.cs     |   33 -
 Contrib/TestBed.Net/Renderer.cs                    |  176 --
 Contrib/TestBed.Net/Settings.cs                    |   20 -
 Contrib/TestBed.Net/Test.cs                        |  179 --
 Contrib/TestBed.Net/TestBed.Net.csproj             |   74 -
 Contrib/TestBed.Net/Tests/Bridge.cs                |   59 -
 Documentation/API.chm                              |  Bin 192712 -> 0 bytes
 Documentation/docbook.bat                          |    1 -
 Documentation/images/debugDraw.gif                 |  Bin 19299 -> 0 bytes
 Documentation/latex/Makefile                       |   39 -
 Documentation/manual.css                           |   75 -
 Documentation/manual.html                          |  447 -----
 Documentation/manual.xml                           | 1297 ------------
 Documentation/manual.xsl                           |    8 -
 Examples/TestBed/Framework/Main.cpp                |  357 ----
 Examples/TestBed/Framework/Render.cpp              |  204 --
 Examples/TestBed/Framework/Test.cpp                |  353 ----
 Examples/TestBed/Framework/Test.h                  |  169 --
 Examples/TestBed/Makefile                          |   61 -
 Examples/TestBed/Tests/ApplyForce.h                |  123 --
 Examples/TestBed/Tests/Biped.cpp                   |  187 --
 Examples/TestBed/Tests/Biped.h                     |   25 -
 Examples/TestBed/Tests/BipedDef.cpp                |  478 -----
 Examples/TestBed/Tests/BipedDef.h                  |   51 -
 Examples/TestBed/Tests/BipedTest.h                 |   87 -
 Examples/TestBed/Tests/BroadPhaseTest.cpp          |  307 ---
 Examples/TestBed/Tests/BroadPhaseTest.h            |   87 -
 Examples/TestBed/Tests/CCDTest.h                   |  231 ---
 Examples/TestBed/Tests/Car.h                       |  215 --
 Examples/TestBed/Tests/CompoundShapes.h            |  149 --
 Examples/TestBed/Tests/ContactCallbackTest.h       |  260 ---
 Examples/TestBed/Tests/DistanceTest.h              |  169 --
 Examples/TestBed/Tests/ElasticBody.h               |  465 -----
 Examples/TestBed/Tests/MotorsAndLimits.h           |  148 --
 Examples/TestBed/Tests/PolyCollision.h             |  119 --
 Examples/TestBed/Tests/PolyShapes.h                |  176 --
 Examples/TestBed/Tests/SensorTest.h                |  121 --
 Examples/TestBed/Tests/ShapeEditing.h              |   99 -
 Examples/TestBed/Tests/SliderCrank.h               |  139 --
 Examples/TestBed/Tests/TimeOfImpact.h              |  117 --
 Examples/TestBed/Tests/VerticalStack.h             |  121 --
 Examples/TestBed/Tests/Web.h                       |  215 --
 Include/Box2D.h                                    |   52 -
 Makefile                                           |   28 -
 Source/Collision/Shapes/b2CircleShape.cpp          |  120 --
 Source/Collision/Shapes/b2CircleShape.h            |   92 -
 Source/Collision/Shapes/b2PolygonShape.cpp         |  449 -----
 Source/Collision/Shapes/b2PolygonShape.h           |  163 --
 Source/Collision/Shapes/b2Shape.cpp                |  167 --
 Source/Collision/Shapes/b2Shape.h                  |  285 ---
 Source/Collision/b2BroadPhase.cpp                  |  667 -------
 Source/Collision/b2BroadPhase.h                    |  146 --
 Source/Collision/b2CollideCircle.cpp               |  168 --
 Source/Collision/b2CollidePoly.cpp                 |  352 ----
 Source/Collision/b2Collision.cpp                   |   72 -
 Source/Collision/b2Collision.h                     |  154 --
 Source/Collision/b2Distance.cpp                    |  364 ----
 Source/Collision/b2PairManager.cpp                 |  396 ----
 Source/Collision/b2PairManager.h                   |  121 --
 Source/Collision/b2TimeOfImpact.cpp                |  112 --
 Source/Common/Fixed.h                              |  477 -----
 Source/Common/b2Math.cpp                           |   54 -
 Source/Common/b2Math.h                             |  636 ------
 Source/Common/jtypes.h                             |  139 --
 Source/Dynamics/Contacts/b2CircleContact.cpp       |  121 --
 Source/Dynamics/Contacts/b2Contact.cpp             |  172 --
 Source/Dynamics/Contacts/b2Contact.h               |  183 --
 Source/Dynamics/Contacts/b2ContactSolver.cpp       |  360 ----
 Source/Dynamics/Contacts/b2ContactSolver.h         |   77 -
 .../Dynamics/Contacts/b2PolyAndCircleContact.cpp   |  157 --
 Source/Dynamics/Contacts/b2PolyContact.cpp         |  156 --
 Source/Dynamics/Joints/b2DistanceJoint.cpp         |  206 --
 Source/Dynamics/Joints/b2DistanceJoint.h           |   96 -
 Source/Dynamics/Joints/b2GearJoint.cpp             |  253 ---
 Source/Dynamics/Joints/b2Joint.cpp                 |  134 --
 Source/Dynamics/Joints/b2MouseJoint.cpp            |  146 --
 Source/Dynamics/Joints/b2PrismaticJoint.cpp        |  478 -----
 Source/Dynamics/Joints/b2PulleyJoint.cpp           |  430 ----
 Source/Dynamics/Joints/b2PulleyJoint.h             |  153 --
 Source/Dynamics/Joints/b2RevoluteJoint.cpp         |  399 ----
 Source/Dynamics/b2Body.cpp                         |  394 ----
 Source/Dynamics/b2Body.h                           |  587 ------
 Source/Dynamics/b2ContactManager.cpp               |  240 ---
 Source/Dynamics/b2Island.cpp                       |  420 ----
 Source/Dynamics/b2World.cpp                        | 1064 ----------
 Source/Dynamics/b2World.h                          |  253 ---
 Source/Dynamics/b2WorldCallbacks.h                 |  172 --
 Source/Makefile                                    |  134 --
 TODO.txt                                           |  157 --
 364 files changed, 41291 insertions(+), 27098 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/box2d.git



More information about the Pkg-games-commits mailing list