From d9f5d6dfbe42911382a087aabfee628eed06b231 Mon Sep 17 00:00:00 2001 From: freezepluto <54890579+freezepluto@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:37:16 +0800 Subject: Fix typo in Web/API/Canvas_API/Tutorial/Drawing_shapes, zh-CN (#2756) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 第242行的 描述三角形函数,应该为描边三角形函数 --- files/zh-cn/web/api/canvas_api/tutorial/drawing_shapes/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/api/canvas_api/tutorial/drawing_shapes/index.html b/files/zh-cn/web/api/canvas_api/tutorial/drawing_shapes/index.html index 66f177213a..8eee553d23 100644 --- a/files/zh-cn/web/api/canvas_api/tutorial/drawing_shapes/index.html +++ b/files/zh-cn/web/api/canvas_api/tutorial/drawing_shapes/index.html @@ -239,7 +239,7 @@ translation_of: Web/API/Canvas_API/Tutorial/Drawing_shapes
{{EmbedLiveSample("%E7%BA%BF", 160, 160, "https://mdn.mozillademos.org/files/238/Canvas_lineTo.png")}}
-你会注意到填充与描边三角形步骤有所不同。正如上面所提到的,因为路径使用填充(fill)时,路径自动闭合,使用描边(stroke)则不会闭合路径。如果没有添加闭合路径closePath()
到描述三角形函数中,则只绘制了两条线段,并不是一个完整的三角形。
你会注意到填充与描边三角形步骤有所不同。正如上面所提到的,因为路径使用填充(fill)时,路径自动闭合,使用描边(stroke)则不会闭合路径。如果没有添加闭合路径closePath()
到描边三角形函数中,则只绘制了两条线段,并不是一个完整的三角形。