C# Class BEPUphysics.NarrowPhaseSystems.Pairs.TriangleConvexPairHandler

Handles a triangle-convex collision pair.
Inheritance: ConvexConstraintPairHandler
Datei anzeigen Open project: Indiefreaks/igf

Public Methods

Method Description
CleanUp ( ) : void

Cleans up the pair handler.

Initialize ( BroadPhaseEntry entryA, BroadPhaseEntry entryB ) : void

Initializes the pair handler.

UpdateTimeOfImpact ( Collidable requester, float dt ) : void

Updates the time of impact for the pair.

Method Details

CleanUp() public method

Cleans up the pair handler.
public CleanUp ( ) : void
return void

Initialize() public method

Initializes the pair handler.
public Initialize ( BroadPhaseEntry entryA, BroadPhaseEntry entryB ) : void
entryA BroadPhaseEntry First entry in the pair.
entryB BroadPhaseEntry Second entry in the pair.
return void

UpdateTimeOfImpact() public method

Updates the time of impact for the pair.
public UpdateTimeOfImpact ( Collidable requester, float dt ) : void
requester BEPUphysics.BroadPhaseEntries.Collidable Collidable requesting the update.
dt float Timestep duration.
return void