C# Класс Axiom.Math.PlaneBoundedVolume

Represents a convex volume bounded by planes.
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
outside PlaneSide
planes PlaneList

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

Метод Описание
Intersects ( AxisAlignedBox box ) : bool

Intersection test with an AxisAlignedBox.

May return false positives but will never miss an intersection.

Intersects ( Sphere sphere ) : bool

Intersection test with Sphere.

PlaneBoundedVolume ( ) : System

Default constructor.

PlaneBoundedVolume ( PlaneSide outside ) : System

Constructor.

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

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

Intersection test with an AxisAlignedBox.
May return false positives but will never miss an intersection.
public Intersects ( AxisAlignedBox box ) : bool
box AxisAlignedBox Box to test.
Результат bool

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

Intersection test with Sphere.
public Intersects ( Sphere sphere ) : bool
sphere Sphere Sphere to test.
Результат bool

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

Default constructor.
public PlaneBoundedVolume ( ) : System
Результат System

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

Constructor.
public PlaneBoundedVolume ( PlaneSide outside ) : System
outside PlaneSide Side of the plane to be considered 'outside'.
Результат System

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

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

Side of the plane to be considered 'outside'.
public PlaneSide outside
Результат PlaneSide

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

Publicly accessible plane list, you can modify this direct.
public PlaneList planes
Результат PlaneList