表示一个位置 (x,y)

(UI 0.9.9)

简介

点在整个 UI 中被用来表示屏幕、控件或区域上的坐标。

类概要

final class UI\Point {
/* 属性 */
public $x;
public $y;
/* 构造函数 */
public __construct(float $x, float $y)
/* 方法 */
public static at(float $point): UI\Point
public static at(UI\Size $size): UI\Point
public getX(): float
public getY(): float
public setX(float $point)
public setY(float $point)
}

属性

x

保存 X 坐标,可以直接读写

y

保存 Y 坐标,可以直接读写

目录

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top