Signed-off-by: wangmiaoliang <wangmiaoliang1@huawei.com>

🤖‍ AI[0%] 👌 AI Adopted[0%] 🧑 Human[100%]

Change-Id: I177356ad396b043727cb5c8b3487c5b99d6a3966
This commit is contained in:
wangmiaoliang
2026-06-12 18:58:08 +08:00
parent c3ef54765a
commit 02412d34d0
@@ -44,22 +44,6 @@ extern "C" {
#endif
/**
* @brief Defines a two-dimensional point struct, with coordinates stored as float type.
*
* @since 24
*/
typedef struct {
/**
* x-axis coordinate.
*/
float x;
/**
* y-axis coordinate.
*/
float y;
} ArkUI_PointF;
/**
* @brief 定义四阶矩阵对象。
*
@@ -815,6 +799,23 @@ typedef struct {
float perspective;
} ArkUI_RotationOptions;
/**
* @brief 定义一个二维坐标点结构体,坐标以浮点类型存储。
*
* @since 24
*/
typedef struct {
/**
* x轴坐标。取值范围:(-∞, +∞)。
*/
float x;
/**
* y轴坐标。取值范围:(-∞, +∞)。
*/
float y;
} ArkUI_PointF;
/**
* @brief 定义阴影选项对象。
*