diff --git a/beziers.scad b/beziers.scad index 90b9790..feacb48 100644 --- a/beziers.scad +++ b/beziers.scad @@ -25,8 +25,8 @@ // Topics: Bezier Paths // See Also: bez_tang(), bez_joint(), bez_end() // Usage: -// pts = bez_begin(pt,a,r,
);
-// pts = bez_begin(pt,VECTOR, );
+// pts = bez_begin(pt, a, r, );
+// pts = bez_begin(pt, VECTOR, );
// Description:
// This is used to create the first endpoint and control point of a cubic bezier path.
// Arguments:
@@ -94,8 +94,8 @@ function bez_begin(pt,a,r,p) =
// Topics: Bezier Paths
// See Also: bez_begin(), bez_joint(), bez_end()
// Usage:
-// pts = bez_tang(pt,a,r1,r2, );
-// pts = bez_tang(pt,VECTOR, );
+// pts = bez_tang(pt, a, r1, r2, );
+// pts = bez_tang(pt, VECTOR, );
// Description:
// This creates a smooth joint in a cubic bezier path. It creates three points, being the
// approaching control point, the fixed bezier control point, and the departing control
@@ -128,8 +128,8 @@ function bez_tang(pt,a,r1,r2,p) =
// Topics: Bezier Paths
// See Also: bez_begin(), bez_tang(), bez_end()
// Usage:
-// pts = bez_joint(pt,a1,a2,r1,r2, );
-// pts = bez_end(pt,VECTOR, );
+// pts = bez_end(pt, a, r, );
+// pts = bez_end(pt, VECTOR, );
// Description:
// This is used to create the approaching control point, and the endpoint of a cubic bezier path.
// See {{bez_begin()}} for examples.
@@ -621,7 +621,7 @@ function bezier_path_point(path, seg, u, N=3) =
// Function: bezier_path_closest_point()
// Usage:
-// res = bezier_path_closest_point(bezier,pt);
+// res = bezier_path_closest_point(bezier, pt);
// Topics: Bezier Paths
// See Also: bezier_points(), bezier_curve(), bezier_segment_closest_point()
// Description:
@@ -919,7 +919,7 @@ function bezier_offset(offset, bezier, N=3) =
// Module: bezier_polygon()
// Usage:
-// bezier_polygon(bezier,