C# Class BEPUphysics.CollisionShapes.ConvexShapes.OrientedConvexShapeEntry

A shape associated with an orientation.
Datei anzeigen Open project: Indiefreaks/igf Class Usage Examples

Public Properties

Property Type Description
CollisionShape ConvexShape
Orientation Microsoft.Xna.Framework.Quaternion

Public Methods

Method Description
OrientedConvexShapeEntry ( ConvexShape shape ) : System

Constructs a new entry with identity orientation.

OrientedConvexShapeEntry ( Microsoft.Xna.Framework.Quaternion orientation, ConvexShape shape ) : System

Constructs a new entry.

Method Details

OrientedConvexShapeEntry() public method

Constructs a new entry with identity orientation.
public OrientedConvexShapeEntry ( ConvexShape shape ) : System
shape ConvexShape Shape of the entry.
return System

OrientedConvexShapeEntry() public method

Constructs a new entry.
public OrientedConvexShapeEntry ( Microsoft.Xna.Framework.Quaternion orientation, ConvexShape shape ) : System
orientation Microsoft.Xna.Framework.Quaternion Orientation of the entry.
shape ConvexShape Shape of the entry.
return System

Property Details

CollisionShape public_oe property

The entry's shape.
public ConvexShape,BEPUphysics.CollisionShapes.ConvexShapes CollisionShape
return ConvexShape

Orientation public_oe property

The entry's orientation.
public Quaternion,Microsoft.Xna.Framework Orientation
return Microsoft.Xna.Framework.Quaternion