Represents a position (x,y)

(PHP 7, UI 0.9.9)

Wstęp

Points are used throughout UI to represent co-ordinates on a screen, control, or area.

Krótki opis klasy

final UI\Point {
/* Właściwości */
public $x ;
public $y ;
/* Constructor */
public __construct ( float $x , float $y )
/* Metody */
public static at ( float $point ) : UI\Point
public static at ( UI\Size $size ) : UI\Point
public getX ( void ) : float
public getY ( void ) : float
public setX ( float $point )
public setY ( float $point )
}

Właściwości

x

Holds the X co-ordinate, can be read/written directly

y

Holds the Y co-ordinate, can be read/written directly

Spis treści

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top