C# Class BEPUphysics.BroadPhaseEntries.ContainmentState

Stores flags regarding an object's degree of inclusion in a volume.
Datei anzeigen Open project: Indiefreaks/igf

Public Properties

Property Type Description
IsContained bool
IsTouching bool

Public Methods

Method Description
ContainmentState ( bool touching, bool contained ) : System

Constructs a new ContainmentState.

Private Methods

Method Description
ContainmentState ( bool touching, bool contained, bool stale ) : System

Constructs a new ContainmentState.

Method Details

ContainmentState() public method

Constructs a new ContainmentState.
public ContainmentState ( bool touching, bool contained ) : System
touching bool Whether or not the object is partially or fully contained.
contained bool Whether or not the object is fully contained.
return System

Property Details

IsContained public_oe property

Whether or not the object is fully contained.
public bool IsContained
return bool

IsTouching public_oe property

Whether or not the object is partially or fully contained.
public bool IsTouching
return bool