C# Класс BEPUphysics.BroadPhaseEntries.ContainmentState

Stores flags regarding an object's degree of inclusion in a volume.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
IsContained bool
IsTouching bool

Открытые методы

Метод Описание
ContainmentState ( bool touching, bool contained ) : System

Constructs a new ContainmentState.

Приватные методы

Метод Описание
ContainmentState ( bool touching, bool contained, bool stale ) : System

Constructs a new ContainmentState.

Описание методов

ContainmentState() публичный метод

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.
Результат System

Описание свойств

IsContained публичное свойство

Whether or not the object is fully contained.
public bool IsContained
Результат bool

IsTouching публичное свойство

Whether or not the object is partially or fully contained.
public bool IsTouching
Результат bool