Skip to content

Commit 484a636

Browse files
authored
fix: suggestion.
1 parent cf449f4 commit 484a636

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/shape/curves.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,8 +466,8 @@ function curves(p5, fn){
466466
* Spline curves can form shapes and curves that slope gently. They’re like
467467
* cables that are attached to a set of points. By default (`ends: INCLUDE`),
468468
* the curve passes through all four points you provide, in order
469-
* `p0(x1,y1)` -> `p1(x2,y2)` -> `p2(x3,y3)` -> `p3(x4,y4)`. Think of them simply as
470-
* points on the curve. If you switch to `ends: EXCLUDE`, p0 and p3 act
469+
* `p0(x1,y1)` -> `p1(x2,y2)` -> `p2(x3,y3)` -> `p3(x4,y4)`. Think of them as
470+
* points on a curve. If you switch to `ends: EXCLUDE`, p0 and p3 act
471471
* like control points and only the middle span `p1->p2` is drawn.
472472
*
473473
* Spline curves can also be drawn in 3D using WebGL mode. The 3D version of

0 commit comments

Comments
 (0)