Skip to content

Commit ff40f49

Browse files
authored
Merge pull request #2342 from vsemozhetbyt/patch-10
Fix typo in 7.1 (Bezier curve)
2 parents b65c625 + 21dc138 commit ff40f49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

7-animation/1-bezier-curve/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For two points we have a linear curve (that's a straight line), for three points
3131

3232
![](bezier4-e.svg) ![](bezier3-e.svg)
3333

34-
Because of that last property, in computer graphics it's possible to optimize intersection tests. If convex hulls do not intersect, then curves do not either. So checking for the convex hulls intersection first can give a very fast "no intersection" result. Checking the intersection or convex hulls is much easier, because they are rectangles, triangles and so on (see the picture above), much simpler figures than the curve.
34+
Because of that last property, in computer graphics it's possible to optimize intersection tests. If convex hulls do not intersect, then curves do not either. So checking for the convex hulls intersection first can give a very fast "no intersection" result. Checking the intersection of convex hulls is much easier, because they are rectangles, triangles and so on (see the picture above), much simpler figures than the curve.
3535

3636
**The main value of Bezier curves for drawing -- by moving the points the curve is changing *in intuitively obvious way*.**
3737

0 commit comments

Comments
 (0)