Uses of Class
org.jbox2d.collision.Manifold
-
Packages that use Manifold Package Description org.jbox2d.callbacks org.jbox2d.collision org.jbox2d.dynamics.contacts org.jbox2d.testbed.framework org.jbox2d.testbed.tests -
-
Uses of Manifold in org.jbox2d.callbacks
Methods in org.jbox2d.callbacks with parameters of type Manifold Modifier and Type Method Description void
ContactListener. preSolve(Contact contact, Manifold oldManifold)
This is called after a contact is updated. -
Uses of Manifold in org.jbox2d.collision
Methods in org.jbox2d.collision with parameters of type Manifold Modifier and Type Method Description void
Collision.EPCollider. collide(Manifold manifold, EdgeShape edgeA, Transform xfA, PolygonShape polygonB, Transform xfB)
void
Collision. collideCircles(Manifold manifold, CircleShape circle1, Transform xfA, CircleShape circle2, Transform xfB)
Compute the collision manifold between two circles.void
Collision. collideEdgeAndCircle(Manifold manifold, EdgeShape edgeA, Transform xfA, CircleShape circleB, Transform xfB)
void
Collision. collideEdgeAndPolygon(Manifold manifold, EdgeShape edgeA, Transform xfA, PolygonShape polygonB, Transform xfB)
void
Collision. collidePolygonAndCircle(Manifold manifold, PolygonShape polygon, Transform xfA, CircleShape circle, Transform xfB)
Compute the collision manifold between a polygon and a circle.void
Collision. collidePolygons(Manifold manifold, PolygonShape polyA, Transform xfA, PolygonShape polyB, Transform xfB)
Compute the collision manifold between two polygons.static void
Collision. getPointStates(Collision.PointState[] state1, Collision.PointState[] state2, Manifold manifold1, Manifold manifold2)
Compute the point states given two manifolds.void
WorldManifold. initialize(Manifold manifold, Transform xfA, float radiusA, Transform xfB, float radiusB)
void
Manifold. set(Manifold cp)
copies this manifold from the given oneConstructors in org.jbox2d.collision with parameters of type Manifold Constructor Description Manifold(Manifold other)
Creates this manifold as a copy of the other -
Uses of Manifold in org.jbox2d.dynamics.contacts
Fields in org.jbox2d.dynamics.contacts declared as Manifold Modifier and Type Field Description Manifold
Contact. m_manifold
private Manifold
Contact. oldManifold
Methods in org.jbox2d.dynamics.contacts that return Manifold Modifier and Type Method Description Manifold
Contact. getManifold()
Get the contact manifold.Methods in org.jbox2d.dynamics.contacts with parameters of type Manifold Modifier and Type Method Description void
ChainAndCircleContact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
void
ChainAndPolygonContact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
void
CircleContact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
abstract void
Contact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
void
EdgeAndCircleContact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
void
EdgeAndPolygonContact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
void
PolygonAndCircleContact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
void
PolygonContact. evaluate(Manifold manifold, Transform xfA, Transform xfB)
-
Uses of Manifold in org.jbox2d.testbed.framework
Methods in org.jbox2d.testbed.framework with parameters of type Manifold Modifier and Type Method Description void
TestbedTest. preSolve(Contact contact, Manifold oldManifold)
-
Uses of Manifold in org.jbox2d.testbed.tests
Methods in org.jbox2d.testbed.tests with parameters of type Manifold Modifier and Type Method Description void
ConveyorBelt. preSolve(Contact contact, Manifold oldManifold)
void
OneSidedTest. preSolve(Contact contact, Manifold oldManifold)
-