Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorials/math/beziers_and_curves.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ control the shape of our curve freely. Instead of having ``p0``, ``p1``, ``p2``
and ``p3``, we will store them as:

* ``point0 = p0``: Is the first point, the source
* ``control0 = p1 - p0``: Is a vector relative to the first control point
* ``control1 = p3 - p2``: Is a vector relative to the second control point
* ``control0 = p1 - p0``: Is a vector relative to the first point
* ``control1 = p2 - p3``: Is a vector relative to the second point
* ``point1 = p3``: Is the second point, the destination

This way, we have two points and two control points which are relative vectors
Expand Down