java.lang.Object
|---ohos.agp.utils.Point
public class Point
extends Object
创建用于记录像素的实例的实用程序类。
每个实例代表一个二维坐标,可以用来表示一个像素。
Since:
1
修饰符和类型 | 字段 | 描述 |
---|---|---|
float[] | position | 表示一个点所代表的位置。 |
构造函数 | 描述 |
---|---|
Point() | 用于创建 Point 实例的无参数构造函数。 |
Point(float x, float y) | 根据 (x,y) 坐标在指定位置构造一个点。 |
Point(Point point) | 在指定位置构造一个点。 |
修饰符和类型 | 方法 | 描述 |
---|---|---|
boolean | equals(float x, float y) | 检查此点是否等于具有给定坐标的指定点。 |
boolean | equals(Object o) | 指示其他对象是否“等于”这个对象。 |
float | getPointX() | 获取此 Point 的 x 坐标的浮点表示。 |
int | getPointXToInt() | 获取此 Point 的 x 坐标的整数表示。 |
float | getPointY() | 获取此 Point 的 y 坐标的浮点表示。 |
int | getPointYToInt() | 获取此 Point 的 y 坐标的整数表示。 |
int | hashCode() | 返回对象的哈希码值。 |
boolean | isInRect(Rect rect) | 检查此点是否在指定的矩形中。 |
void | modify(float x, float y) | 根据指定点的坐标修改此点。 |
void | modify(Point point) | 根据指定点修改此点。 |
String | toString() | 获取点的字符串值。 |
void | translate(float dx, float dy) | 翻译这一点。 |
从类 java.lang.Object 继承的方法 |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
public final float[] position
表示一个点所代表的位置。
一维浮点数组用于表示该点的 X 和 Y 坐标。
public Point()
用于创建 Point 实例的无参数构造函数。
该方法用于在坐标空间的原点 (0,0) 处构造一个点。
public Point(Point point)
在指定位置构造一个点。
参数:
参数名称 | 参数描述 |
---|---|
point | 表示初始化点 |
Since:
4
public Point(float x, float y)
根据 (x,y) 坐标在指定位置构造一个点。
参数:
参数名称 | 参数描述 |
---|---|
x | 表示X坐标,类型为float。 |
y | 表示Y坐标,类型为float。 |
public float getPointX()
获取此 Point 的 x 坐标的浮点表示。
返回:
返回 x 坐标。
Since:
3
public float getPointY()
获取此 Point 的 y 坐标的浮点表示。
返回:
返回 y 坐标。
Since:
4
public int getPointXToInt()
获取此 Point 的 x 坐标的整数表示。
返回:
返回 x 坐标。
Since:
4
public int getPointYToInt()
获取此 Point 的 y 坐标的整数表示。
返回:
返回 y 坐标。
Since:
4
public final boolean equals(float x, float y)
检查此点是否等于具有给定坐标的指定点。
参数:
参数名称 | 参数描述 |
---|---|
x | 表示指定点的X坐标。 |
y | 表示指定点的Y坐标。 |
返回:
如果两点相等则返回 true; 否则返回 false。
Since:
4
public boolean equals(Object o)
指示其他对象是否“等于”这个对象。
equals 方法在非空对象引用上实现等价关系:
Object 类的 equals 方法实现了对象上最有区别的可能等价关系; 也就是说,对于任何非空引用值 x 和 y,当且仅当 x 和 y 引用同一个对象(x == y 的值为 true)时,此方法才返回 true。
请注意,每当重写该方法时,通常都需要重写 hashCode 方法,以维护 hashCode 方法的一般约定,即相等的对象必须具有相等的哈希码。
覆盖:
类 Object 中的等于
参数:
参数名称 | 参数描述 |
---|---|
o | 要与之比较的参考对象。 |
返回:
如果此对象与 obj 参数相同,则为 true; 否则为 false。
public int hashCode()
返回对象的哈希码值。 支持这种方法是为了有利于哈希表,例如 HashMap 提供的那些。
hashCode 的一般合约是:
在合理可行的情况下,由 Object 类定义的 hashCode 方法确实为不同的对象返回不同的整数。 (这通常通过将对象的内部地址转换为整数来实现,但 Java™ 编程语言不需要这种实现技术。)
覆盖:
类 Object 中的 hashCode
返回:
此对象的哈希码值。
public final void modify(float x, float y)
根据指定点的坐标修改此点。
参数:
参数名称 | 参数描述 |
---|---|
x | 表示指定点的X坐标。 |
y | 表示指定点的Y坐标。 |
Since:
4
public final void modify(Point point)
根据指定点修改此点。
参数:
参数名称 | 参数描述 |
---|---|
point | 表示指定点。 |
Since:
4
public final void translate(float dx, float dy)
翻译这一点。
参数:
参数名称 | 参数描述 |
---|---|
dx | 指示要平移的 x 轴距离。 |
dy | 指示要平移的 y 轴距离。 |
Since:
4
public boolean isInRect(Rect rect)
检查此点是否在指定的矩形中。
参数:
参数名称 | 参数描述 |
---|---|
rect | 表示指定的矩形。 |
返回:
如果此 Point 在指定的矩形中,则为 true; 否则返回 false。
Since:
3
public String toString()
获取点的字符串值。
覆盖:
类 Object 中的 toString
返回:
返回点的字符串值。
Since:
4
ConnectionPoolDataSourcepublic interface ConnectionPoolDataSourceextends CommonDataSourcePooledConnection 对象的工厂。 ...
sticky粘性布局组件。Sticky 组件与 CSS 中position: sticky属性实现的效果一致,当组件在屏幕范围内时,会按照正常的布局排列,...
#概览新增:对于 v-if/v-else/v-else-if的各分支项key将不再是必须的,因为现在 Vue 会自动生成唯一的key。非兼容:如果你手动提...
#$data类型:Object详细:组件实例观察的数据对象。组件实例代理了对其 data 对象 property 的访问。参考选项 / 数据 - data#$pr...
链接是XHTML文档中的下一个元素。本章的内容讨论如何完成XHTML文档的链接,如何在网站中插入图像以及如何创建超链接。XHTML中的...