C# Класс flxSharp.flxSharp.FlxRect

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

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

Метод Описание
FlxRect ( float x, float y, float width, float height ) : System

Instantiate a new rectangle.

ToRectangle ( ) : Rectangle

Create a new Rectangle from this FlxRect.

copyFrom ( FlxRect rect ) : FlxRect

Helper function, just copies the values from the specified rectangle.

copyFromFlash ( object flashRect ) : FlxRect

Helper function, just copies the values from the specified Flash rectangle.

copyTo ( FlxRect rect ) : FlxRect

Helper function, just copies the values from this rectangle to the specified rectangle.

copyToFlash ( object flashRect ) : object

Helper function, just copies the values from this rectangle to the specified Flash rectangle.

make ( float x, float y, float width, float height ) : FlxRect

Instantiate a new rectangle. Protip: Values of the current instance are set, but nothing is created here.

overlaps ( FlxRect rect ) : System.Boolean

Checks to see if some FlxRect object overlaps this FlxRect object.

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

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

Instantiate a new rectangle.
public FlxRect ( float x, float y, float width, float height ) : System
x float The X-coordinate of the rectangle in space.
y float The Y-coordinate of the rectangle in space.
width float Desired width of the rectangle.
height float Desired height of the rectangle.
Результат System

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

Create a new Rectangle from this FlxRect.
public ToRectangle ( ) : Rectangle
Результат Microsoft.Xna.Framework.Rectangle

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

Helper function, just copies the values from the specified rectangle.
public copyFrom ( FlxRect rect ) : FlxRect
rect FlxRect Any FlxRect.
Результат FlxRect

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

Helper function, just copies the values from the specified Flash rectangle.
public copyFromFlash ( object flashRect ) : FlxRect
flashRect object Any Rectangle.
Результат FlxRect

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

Helper function, just copies the values from this rectangle to the specified rectangle.
public copyTo ( FlxRect rect ) : FlxRect
rect FlxRect Any FlxRect.
Результат FlxRect

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

Helper function, just copies the values from this rectangle to the specified Flash rectangle.
public copyToFlash ( object flashRect ) : object
flashRect object Any Rectangle.
Результат object

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

Instantiate a new rectangle. Protip: Values of the current instance are set, but nothing is created here.
public make ( float x, float y, float width, float height ) : FlxRect
x float The X-coordinate of the rectangle in space.
y float The Y-coordinate of the rectangle in space.
width float Desired width of the rectangle.
height float Desired height of the rectangle.
Результат FlxRect

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

Checks to see if some FlxRect object overlaps this FlxRect object.
public overlaps ( FlxRect rect ) : System.Boolean
rect FlxRect The rectangle being tested.
Результат System.Boolean