PHP Conference Japan 2024

表示一个位置(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