diff options
author | freezepluto <54890579+freezepluto@users.noreply.github.com> | 2021-10-18 22:37:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 22:37:16 +0800 |
commit | d9f5d6dfbe42911382a087aabfee628eed06b231 (patch) | |
tree | 4310581efcbcdd82aab08ebb811420fc6e03e466 | |
parent | fa4e17605707c753b5ebb49dd7671a1a4ea2b345 (diff) | |
download | translated-content-d9f5d6dfbe42911382a087aabfee628eed06b231.tar.gz translated-content-d9f5d6dfbe42911382a087aabfee628eed06b231.tar.bz2 translated-content-d9f5d6dfbe42911382a087aabfee628eed06b231.zip |
Fix typo in Web/API/Canvas_API/Tutorial/Drawing_shapes, zh-CN (#2756)
第242行的 描述三角形函数,应该为描边三角形函数
-rw-r--r-- | files/zh-cn/web/api/canvas_api/tutorial/drawing_shapes/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 <p>{{EmbedLiveSample("%E7%BA%BF", 160, 160, "https://mdn.mozillademos.org/files/238/Canvas_lineTo.png")}}</p> -<p>你会注意到填充与描边三角形步骤有所不同。正如上面所提到的,因为路径使用填充(fill)时,路径自动闭合,使用描边(stroke)则不会闭合路径。如果没有添加闭合路径<code>closePath()</code>到描述三角形函数中,则只绘制了两条线段,并不是一个完整的三角形。</p> +<p>你会注意到填充与描边三角形步骤有所不同。正如上面所提到的,因为路径使用填充(fill)时,路径自动闭合,使用描边(stroke)则不会闭合路径。如果没有添加闭合路径<code>closePath()</code>到描边三角形函数中,则只绘制了两条线段,并不是一个完整的三角形。</p> <h3 id="圆弧">圆弧</h3> |