C# Класс OpenTK.Box2

Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
Bottom float
Left float
Right float
Top float

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

Метод Описание
Box2 ( System.Vector2 topLeft, System.Vector2 bottomRight ) : System

Constructs a new Box2 with the specified dimensions.

Box2 ( float left, float top, float right, float bottom ) : System

Constructs a new Box2 with the specified dimensions.

FromTLRB ( float top, float left, float right, float bottom ) : Box2

Creates a new Box2 with the specified dimensions.

ToString ( ) : string

Returns a System.String describing the current instance.

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

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

Constructs a new Box2 with the specified dimensions.
public Box2 ( System.Vector2 topLeft, System.Vector2 bottomRight ) : System
topLeft System.Vector2 AnOpenTK.Vector2 describing the top-left corner of the Box2.
bottomRight System.Vector2 An OpenTK.Vector2 describing the bottom-right corner of the Box2.
Результат System

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

Constructs a new Box2 with the specified dimensions.
public Box2 ( float left, float top, float right, float bottom ) : System
left float The position of the left boundary.
top float The position of the top boundary.
right float The position of the right boundary.
bottom float The position of the bottom boundary.
Результат System

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

Creates a new Box2 with the specified dimensions.
public static FromTLRB ( float top, float left, float right, float bottom ) : Box2
top float The position of the top boundary.
left float The position of the left boundary.
right float The position of the right boundary.
bottom float The position of the bottom boundary.
Результат Box2

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

Returns a System.String describing the current instance.
public ToString ( ) : string
Результат string

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

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

The bottom boundary of the structure.
public float Bottom
Результат float

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

The left boundary of the structure.
public float Left
Результат float

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

The right boundary of the structure.
public float Right
Результат float

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

The top boundary of the structure.
public float Top
Результат float