C# Class BEPUutilities2.BoundingSphere

Provides XNA-like bounding sphere functionality.
Datei anzeigen Open project: RossNordby/scratchpad Class Usage Examples

Public Properties

Property Type Description
Center Vector3
Radius float

Public Methods

Method Description
BoundingSphere ( Vector3 center, float radius ) : System

Constructs a new bounding sphere.

Method Details

BoundingSphere() public method

Constructs a new bounding sphere.
public BoundingSphere ( Vector3 center, float radius ) : System
center Vector3 Location of the center of the sphere.
radius float Radius of the sphere.
return System

Property Details

Center public_oe property

Location of the center of the sphere.
public Vector3 Center
return Vector3

Radius public_oe property

Radius of the sphere.
public float Radius
return float