File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -220,9 +220,9 @@ Lines
220
220
221
221
The different line joints.
222
222
223
- Polylines (i.e. line made of several segments) is much more difficult to render
224
- than segment because we have to take joints into account as illustrated on the
225
- image on the right. But, even if there appears to exist three different kind of
223
+ Polylines (i.e. lines made of several segments) are much more difficult to render
224
+ than segments because we have to take joints into account as illustrated in the
225
+ image on the right. But even if there appear to be three different kinds of
226
226
joints, there are really only two cases to consider: the bevel joint and the
227
227
others (round and miter). These cases are different because we can code a
228
228
reasonably fast solution for the bevel case while the two others ask for more
@@ -485,7 +485,7 @@ a search using the "Bézier" or "bezier" keyword (I even commited `one
485
485
For the time being, we'll use an approximation of Bézier curves using an
486
486
`adaptive subdivision <http://antigrain.com/research/adaptive_bezier/ >`_ as
487
487
designed by Maxim Shemarev (and translated in Python by me, see `curves.py
488
- <code/chapter-09/curves.py> `_). You can see on the images below that this
488
+ <code/chapter-09/curves.py> `_). You can see in the images below that this
489
489
method provides a very good approximation in a reasonable number of segments
490
490
(third figure on the right).
491
491
You can’t perform that action at this time.
0 commit comments