C# Class BEPUphysics.CollisionTests.Manifolds.BoxContactManifold

Manages persistent contact data between two boxes.
Inheritance: BEPUphysics.CollisionTests.Manifolds.ContactManifold
Afficher le fichier Open project: Indiefreaks/igf

Protected Properties

Свойство Type Description
boxA ConvexCollidable

Méthodes publiques

Méthode Description
BoxContactManifold ( ) : System

Constructs a new manifold.

CleanUp ( ) : void

Cleans up the manifold.

Initialize ( Collidable newCollidableA, Collidable newCollidableB ) : void

Initializes the manifold.

Update ( float dt ) : void

Updates the manifold.

Method Details

BoxContactManifold() public méthode

Constructs a new manifold.
public BoxContactManifold ( ) : System
Résultat System

CleanUp() public méthode

Cleans up the manifold.
public CleanUp ( ) : void
Résultat void

Initialize() public méthode

Initializes the manifold.
Thrown when the collidables being used are not of the proper type.
public Initialize ( Collidable newCollidableA, Collidable newCollidableB ) : void
newCollidableA BEPUphysics.BroadPhaseEntries.Collidable First collidable.
newCollidableB BEPUphysics.BroadPhaseEntries.Collidable Second collidable.
Résultat void

Update() public méthode

Updates the manifold.
public Update ( float dt ) : void
dt float Timestep duration.
Résultat void

Property Details

boxA protected_oe property

protected ConvexCollidable boxA
Résultat ConvexCollidable