C# Class BEPUphysicsDrawer.Models.SelfDrawingModelDisplayObject

Superclass of display types that can draw themselves. These types do not use any instancing techniques.
ファイルを表示 Open project: Indiefreaks/igf Class Usage Examples

Public Methods

Method Description
Draw ( BEPUutilities.Matrix viewMatrix, BEPUutilities.Matrix projectionMatrix ) : void

Draws the display object.

Update ( ) : void

Updates the display object.

Protected Methods

Method Description
SelfDrawingModelDisplayObject ( ModelDrawer modelDrawer ) : Microsoft.Xna.Framework

Method Details

Draw() public abstract method

Draws the display object.
public abstract Draw ( BEPUutilities.Matrix viewMatrix, BEPUutilities.Matrix projectionMatrix ) : void
viewMatrix BEPUutilities.Matrix Current view matrix.
projectionMatrix BEPUutilities.Matrix Current projection matrix.
return void

SelfDrawingModelDisplayObject() protected method

protected SelfDrawingModelDisplayObject ( ModelDrawer modelDrawer ) : Microsoft.Xna.Framework
modelDrawer ModelDrawer
return Microsoft.Xna.Framework

Update() public abstract method

Updates the display object.
public abstract Update ( ) : void
return void