C# Класс Glare.Box4

A four-dimensional box that uses Length elements.
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
Max System.Vector4
Min System.Vector4
Zero Box4

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

Метод Описание
Box4 ( Length minX, Length minY, Length minZ, Length minW, Length maxX, Length maxY, Length maxZ, Length maxW ) : System

Create a Box4 by providing minimum and maximum extents.

Box4 ( System.Vector4 min, System.Vector4 max ) : System

Create a Box4 by providing minimum and maximum extents.

Distance ( System.Vector4 point ) : Length

Get the closest distance between this Box4 and the Vector4.

Intersect ( System.Vector4 point ) : Containment

Get the intersection type between this box and the point.

NearestPointTo ( System.Vector4 point ) : System.Vector4

Get the nearest point between this Box4 and a Vector4. If the Vector4 is inside this Box4, it is returned untouched.

NearestPointTo ( System.Vector4 &point, System.Vector4 &result ) : void

Get the nearest point between this Box4 and a Vector4. If the Vector4 is inside this Box4, it is returned untouched.

Overlaps ( System.Vector4 point ) : bool

Get whether this Box4 inclusively intersects with the Vector4.

Random ( Random rng ) : System.Vector4

Get a random position within the box.

Random ( Random rng, System.Vector4 &result ) : void

Get a random position within the box.

Relative ( Length minX, Length minY, Length minZ, Length minW, Length sizeX, Length sizeY, Length sizeZ, Length sizeW ) : Box4

Create a Box4 by providing the minimum extent and the size of each side.

Relative ( System.Vector4 min, System.Vector4 size ) : Box4

Create a Box4 by providing the minimum extent and the size of each side.

Relative ( Length minX, Length minY, Length minZ, Length minW, Length sizeX, Length sizeY, Length sizeZ, Length sizeW, Box4 &result ) : void

Create a Box4 by providing the minimum extent and the size of each side.

Relative ( System.Vector4 min, System.Vector4 size, Box4 &result ) : void

Create a Box4 by providing the minimum extent and the size of each side.

ToString ( ) : string

Convert to a string representation of the Box4.

ToString ( string format, IFormatProvider provider ) : string

Convert to a string representation of the Box4.

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

Box4() публичный Метод

Create a Box4 by providing minimum and maximum extents.
public Box4 ( Length minX, Length minY, Length minZ, Length minW, Length maxX, Length maxY, Length maxZ, Length maxW ) : System
minX Length
minY Length
minZ Length
minW Length
maxX Length
maxY Length
maxZ Length
maxW Length
Результат System

Box4() публичный Метод

Create a Box4 by providing minimum and maximum extents.
public Box4 ( System.Vector4 min, System.Vector4 max ) : System
min System.Vector4
max System.Vector4
Результат System

Distance() публичный Метод

Get the closest distance between this Box4 and the Vector4.
public Distance ( System.Vector4 point ) : Length
point System.Vector4
Результат Length

Intersect() публичный Метод

Get the intersection type between this box and the point.
public Intersect ( System.Vector4 point ) : Containment
point System.Vector4
Результат Containment

NearestPointTo() публичный Метод

Get the nearest point between this Box4 and a Vector4. If the Vector4 is inside this Box4, it is returned untouched.
public NearestPointTo ( System.Vector4 point ) : System.Vector4
point System.Vector4
Результат System.Vector4

NearestPointTo() публичный Метод

Get the nearest point between this Box4 and a Vector4. If the Vector4 is inside this Box4, it is returned untouched.
public NearestPointTo ( System.Vector4 &point, System.Vector4 &result ) : void
point System.Vector4
result System.Vector4
Результат void

Overlaps() публичный Метод

Get whether this Box4 inclusively intersects with the Vector4.
public Overlaps ( System.Vector4 point ) : bool
point System.Vector4
Результат bool

Random() публичный Метод

Get a random position within the box.
public Random ( Random rng ) : System.Vector4
rng System.Random
Результат System.Vector4

Random() публичный Метод

Get a random position within the box.
public Random ( Random rng, System.Vector4 &result ) : void
rng System.Random
result System.Vector4
Результат void

Relative() публичный статический Метод

Create a Box4 by providing the minimum extent and the size of each side.
public static Relative ( Length minX, Length minY, Length minZ, Length minW, Length sizeX, Length sizeY, Length sizeZ, Length sizeW ) : Box4
minX Length
minY Length
minZ Length
minW Length
sizeX Length
sizeY Length
sizeZ Length
sizeW Length
Результат Box4

Relative() публичный статический Метод

Create a Box4 by providing the minimum extent and the size of each side.
public static Relative ( System.Vector4 min, System.Vector4 size ) : Box4
min System.Vector4
size System.Vector4
Результат Box4

Relative() публичный статический Метод

Create a Box4 by providing the minimum extent and the size of each side.
public static Relative ( Length minX, Length minY, Length minZ, Length minW, Length sizeX, Length sizeY, Length sizeZ, Length sizeW, Box4 &result ) : void
minX Length
minY Length
minZ Length
minW Length
sizeX Length
sizeY Length
sizeZ Length
sizeW Length
result Box4
Результат void

Relative() публичный статический Метод

Create a Box4 by providing the minimum extent and the size of each side.
public static Relative ( System.Vector4 min, System.Vector4 size, Box4 &result ) : void
min System.Vector4
size System.Vector4
result Box4
Результат void

ToString() публичный Метод

Convert to a string representation of the Box4.
public ToString ( ) : string
Результат string

ToString() публичный Метод

Convert to a string representation of the Box4.
public ToString ( string format, IFormatProvider provider ) : string
format string
provider IFormatProvider
Результат string

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

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

The maximum extents of the Box4.
public Vector4,System Max
Результат System.Vector4

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

The minimum extents of the Box4.
public Vector4,System Min
Результат System.Vector4

Zero публичное статическое свойство

Get an empty Box4 centred on the origin.
public static Box4,Glare Zero
Результат Box4