Skip to content

Commit 980f27a

Browse files
committed
Fix left/right confusion in Chapter 16
1 parent 8f7ab29 commit 980f27a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

16_canvas.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,8 +430,8 @@ to draw a full circle.
430430
----
431431

432432
(((moveTo method)))(((arc method)))(((path, canvas)))The resulting picture
433-
contains a ((line)) from the left of the full circle (first call to
434-
`arc`) to the left of the quarter-((circle)) (second call). Like other
433+
contains a ((line)) from the right of the full circle (first call to
434+
`arc`) to the right of the quarter-((circle)) (second call). Like other
435435
path-drawing methods, a line drawn with `arc` is connected to the
436436
previous path segment by default. You'd have to call `moveTo` or
437437
start a new path if you want to avoid this.

html/errata.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,8 @@ <h2>Chapter 16</h2>
5252
the <code>bezierCurve</code> method. This method is actually
5353
called <code>bezierCurveTo</code> (as in the example code).</p>
5454

55+
<p><strong>Page 282</strong> (Curves): Where it says the picture shows
56+
a line from the left of the circle to the left of the quarter circle,
57+
it should definitely say <em>right</em> in both instances.</p>
58+
5559
</article>

0 commit comments

Comments
 (0)