鸿蒙OS开发文档 鸿蒙OS MmiPoint

2024-02-25 开发教程 鸿蒙OS开发文档 匿名 1

MmiPoint

java.lang.Object
|---ohos.multimodalinput.event.MmiPoint

public class MmiPoint
extends Object

表示给定坐标系中的 x、y 或 z 坐标。

Since:

3

构造函数摘要

构造函数描述
MmiPoint(float px, float py)用于创建具有指定 x 和 y 坐标的 MmiPoint 对象的构造函数。
MmiPoint(float px, float py, float pz)用于创建具有指定 x、y 和 z 坐标的 MmiPoint 对象的构造函数。

方法总结

修饰符和类型方法描述
floatgetX()获取 x 坐标。
floatgetY()获取 y 坐标。
floatgetZ()获取 z 坐标。
StringtoString()获取此 MmiPoint 对象的字符串表示形式,其中指定了 x、y 和 z 坐标。
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

构造函数详细信息

MmiPoint

public MmiPoint(float px, float py)

用于创建具有指定 x 和 y 坐标的 MmiPoint 对象的构造函数。

参数:

参数名称参数描述
px表示 x 坐标。
py表示 y 坐标。

Since:

3

MmiPoint

public MmiPoint(float px, float py, float pz)

用于创建具有指定 x、y 和 z 坐标的 MmiPoint 对象的构造函数。

参数:

参数名称参数描述
px表示 x 坐标。
py表示 y 坐标。
pz表示 z 坐标。

Since:

3

方法详情

getX

public float getX()

获取 x 坐标。

返回:

返回 x 坐标。

Since:

3

getY

public float getY()

获取 y 坐标。

返回:

返回 y 坐标。

Since:

3

getZ

public float getZ()

获取 z 坐标。

返回:

返回 z 坐标。

Since:

3

toString

public String toString()

获取此 MmiPoint 对象的字符串表示形式,其中指定了 x、y 和 z 坐标。

覆盖:

类 Object 中的 toString

返回:

返回此 MmiPoint 对象的字符串表示形式,其中指定了 x、y 和 z 坐标,格式为 MmiPoint{px=x 坐标值,py=y 坐标值,pz=z 坐标值}。

Since:

3