From dbbd3bd885949e8b1bb87962959be5f373b3971c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=99=E5=9F=8E=E7=A0=B4?= Date: Mon, 13 Jun 2022 07:26:10 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 沙城破 --- .../reference/arkui-ts/ts-interpolation-calculation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md b/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md index 46258c2fc0..896525c1d3 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md @@ -35,7 +35,7 @@ init(curve?: Curve): Object ## curves.steps -steps(count: number, end?: boolean): Object +steps(count: number, end: boolean): Object 构造阶梯曲线对象。 @@ -45,7 +45,7 @@ steps(count: number, end?: boolean): Object | 参数名 | 类型 | 必填 | 默认值 | 说明 | | ----- | ------- | ---- | ---- | ---------------------------------------- | | count | number | 是 | - | 阶梯的数量,需要为正整数。 | - | end | boolean | 否 | true | 在每个间隔的起点或是终点发生阶跃变化 ,默认值为true,即在终点发生阶跃变化。 | + | end | boolean | 是 | true | 在每个间隔的起点或是终点发生阶跃变化 ,默认值为true,即在终点发生阶跃变化。 | - 返回值
曲线对象Object。 -- GitLab