Tweaks to beziers.scad docs formatting.

This commit is contained in:
Garth Minette
2021-05-09 16:45:37 -07:00
parent c859cd67bc
commit 9668eefb7d

View File

@@ -919,7 +919,7 @@ function bezier_offset(offset, bezier, N=3) =
// Module: bezier_polygon() // Module: bezier_polygon()
// Usage: // Usage:
// bezier_polygon(bezier, <splinesteps>, <N>) { // bezier_polygon(bezier, <splinesteps>, <N>);
// Topics: Bezier Paths // Topics: Bezier Paths
// See Also: bezier_path() // See Also: bezier_path()
// Description: // Description:
@@ -951,7 +951,7 @@ module bezier_polygon(bezier, splinesteps=16, N=3) {
// Module: trace_bezier() // Module: trace_bezier()
// Usage: // Usage:
// trace_bezier(bez, <size>, <N=>) { // trace_bezier(bez, <size>, <N=>);
// Topics: Bezier Paths, Debugging // Topics: Bezier Paths, Debugging
// See Also: bezier_path() // See Also: bezier_path()
// Description: // Description:
@@ -1530,13 +1530,14 @@ function bezier_surface(patches=[], splinesteps=16, vnf=EMPTY_VNF, style="defaul
// Module: trace_bezier_patches() // Module: trace_bezier_patches()
// Usage: // Usage:
// trace_bezier_patches(patches, [size], [splinesteps], [showcps], [showdots], [showpatch], [convexity], [style]); // trace_bezier_patches(patches, <size=>, <splinesteps=>, <showcps=>, <showdots=>, <showpatch=>, <convexity=>, <style=>);
// Topics: Bezier Patches, Debugging // Topics: Bezier Patches, Debugging
// See Also: bezier_patch_points(), bezier_patch_flat(), bezier_surface() // See Also: bezier_patch_points(), bezier_patch_flat(), bezier_surface()
// Description: // Description:
// Shows the surface, and optionally, control points of a list of bezier patches. // Shows the surface, and optionally, control points of a list of bezier patches.
// Arguments: // Arguments:
// patches = A list of rectangular bezier patches. // patches = A list of rectangular bezier patches.
// ---
// splinesteps = Number of steps to divide each bezier segment into. default=16 // splinesteps = Number of steps to divide each bezier segment into. default=16
// showcps = If true, show the controlpoints as well as the surface. Default: true. // showcps = If true, show the controlpoints as well as the surface. Default: true.
// showdots = If true, shows the calculated surface vertices. Default: false. // showdots = If true, shows the calculated surface vertices. Default: false.