C# Class BEPUphysics.NarrowPhaseSystems.Pairs.MobileMeshPairHandler

Handles a mobile mesh-convex collision pair.
Inheritance: BEPUphysics.NarrowPhaseSystems.Pairs.StandardPairHandler
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.

Protected Methods

Method Description
GetContactInformation ( int index, ContactInformation &info ) : void

Method Details

CleanUp() public method

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

GetContactInformation() protected method

protected GetContactInformation ( int index, ContactInformation &info ) : void
index int
info ContactInformation
return void

Initialize() public method

Initializes the pair handler.
public Initialize ( BroadPhaseEntry entryA, BroadPhaseEntry entryB ) : void
entryA BEPUphysics.BroadPhaseEntries.BroadPhaseEntry First entry in the pair.
entryB BEPUphysics.BroadPhaseEntries.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