From 96eb10f47683aefed006265d7545124fb1354578 Mon Sep 17 00:00:00 2001 From: yzj688 Date: Thu, 11 Sep 2025 15:33:01 +0800 Subject: [PATCH] =?UTF-8?q?Point3d=20=E6=94=AF=E6=8C=811.2=20static=20Sign?= =?UTF-8?q?ed-off-by:=20yzj688=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/@ohos.graphics.common2D.d.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/api/@ohos.graphics.common2D.d.ts b/api/@ohos.graphics.common2D.d.ts index 03b657014d..748f6ab57e 100644 --- a/api/@ohos.graphics.common2D.d.ts +++ b/api/@ohos.graphics.common2D.d.ts @@ -197,17 +197,26 @@ declare namespace common2D { y: double; } + /** + * Provides the definition of the point in 3D. + * + * @typedef Point3d + * @extends Point + * @syscap SystemCapability.Graphics.Drawing + * @since 12 + */ /** * Describes a 3D coordinate point. * * @typedef Point3d * @extends Point * @syscap SystemCapability.Graphics.Drawing - * @since 12 dynamic + * @crossplatform + * @since 20 dynamic&static */ interface Point3d extends Point { /** - * Z-axis coordinate. The value is a floating point number. + * Z-axis coordinate. * @type { double } * @syscap SystemCapability.Graphics.Drawing * @since 12 @@ -217,7 +226,7 @@ declare namespace common2D { * @type { double } * @syscap SystemCapability.Graphics.Drawing * @crossplatform - * @since 20 dynamic + * @since 20 dynamic&static */ z: double; } -- Gitee