C# Class BEPUphysics.BroadPhaseEntries.ContainmentState

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

Méthodes publiques

Свойство Type Description
IsContained bool
IsTouching bool

Méthodes publiques

Méthode Description
ContainmentState ( bool touching, bool contained ) : System

Constructs a new ContainmentState.

Private Methods

Méthode Description
ContainmentState ( bool touching, bool contained, bool stale ) : System

Constructs a new ContainmentState.

Method Details

ContainmentState() public méthode

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.
Résultat System

Property Details

IsContained public_oe property

Whether or not the object is fully contained.
public bool IsContained
Résultat bool

IsTouching public_oe property

Whether or not the object is partially or fully contained.
public bool IsTouching
Résultat bool