mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-28 15:59:45 +00:00
Turtle3d arcright/arcup/arcdown docs fixes.
This commit is contained in:
parent
793ef6faaf
commit
49d189f0aa
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
OUTFILE_BASE="BOSL2_Docs"
|
||||
FORMATS="html5"
|
||||
SOURCES="constants.scad.md transforms.scad.md attachments.scad.md shapes2d.scad.md shapes3d.scad.md drawing.scad.md masks2d.scad.md masks3d.scad.md distributors.scad.md color.scad.md partitions.scad.md mutators.scad.md paths.scad.md regions.scad.md skin.scad.md vnf.scad.md beziers.scad.md rounding.scad.md turtle3d.scad.md math.scad.md linalg.scad.md vectors.scad.md coords.scad.md geometry.scad.md trigonometry.scad.md version.scad.md comparisons.scad.md lists.scad.md utility.scad.md strings.scad.md structs.scad.md fnliterals.scad.md threading.scad.md screws.scad.md metric_screws.scad.md screw_drive.scad.md bottlecaps.scad.md ball_bearings.scad.md cubetruss.scad.md gears.scad.md hinges.scad.md joiners.scad.md linear_bearings.scad.md modular_hose.scad.md nema_steppers.scad.md polyhedra.scad.md sliders.scad.md tripod_mounts.scad.md walls.scad.md wiring.scad.md Tutorial-*.md Topics.md AlphaIndex.md"
|
||||
SOURCES="constants.scad.md transforms.scad.md attachments.scad.md shapes2d.scad.md shapes3d.scad.md drawing.scad.md masks2d.scad.md masks3d.scad.md distributors.scad.md color.scad.md partitions.scad.md mutators.scad.md paths.scad.md regions.scad.md skin.scad.md vnf.scad.md beziers.scad.md rounding.scad.md turtle3d.scad.md math.scad.md linalg.scad.md vectors.scad.md coords.scad.md geometry.scad.md trigonometry.scad.md version.scad.md comparisons.scad.md lists.scad.md utility.scad.md strings.scad.md structs.scad.md fnliterals.scad.md threading.scad.md screws.scad.md screw_drive.scad.md bottlecaps.scad.md ball_bearings.scad.md cubetruss.scad.md gears.scad.md hinges.scad.md joiners.scad.md linear_bearings.scad.md modular_hose.scad.md nema_steppers.scad.md polyhedra.scad.md sliders.scad.md tripod_mounts.scad.md walls.scad.md wiring.scad.md Tutorial-*.md Topics.md AlphaIndex.md"
|
||||
PANDOC="/usr/local/Cellar/pandoc/3.1/bin/pandoc"
|
||||
TITLE="Documentation for the Belfry OpenSCAD Library v2"
|
||||
AUTHOR="Garth Minette"
|
||||
|
|
|
@ -113,9 +113,9 @@ function _rotpart(T) = [for(i=[0:3]) [for(j=[0:3]) j<3 || i==3 ? T[i][j] : 0]];
|
|||
// "addlength"|x | length | Add `length` to the turtle move distance
|
||||
// "repeat" |x | count, commands | Repeats a list of commands `count` times. (To repeat a compound command put it in a list: `[["move",10,"grow",2]]`)
|
||||
// "arcleft" |x | radius, [angle] | Draw an arc from the current position toward the left at the specified radius and angle. The turtle turns by `angle`.
|
||||
// "arcright" |x | radius, [angle] | Draw an arc from the current position upward at the specified radius and angle
|
||||
// "arcup" |x | radius, [angle] | Draw an arc from the current position down at the specified radius and angle
|
||||
// "arcdown" |x | radius, [angle] | Draw an arc from the current position down at the specified radius and angle
|
||||
// "arcright" |x | radius, [angle] | Draw an arc from the current position toward the right at the specified radius and angle. The turtle turns by `angle`.
|
||||
// "arcup" |x | radius, [angle] | Draw an arc from the current position upward at the specified radius and angle
|
||||
// "arcdown" |x | radius, [angle] | Draw an arc from the current position downward at the specified radius and angle
|
||||
// "arcxrot" |x | radius, [angle] | Draw an arc turning around x-axis by specified angle or default angle
|
||||
// "arcyrot" |x | radius, [angle] | Draw an arc turning around y-axis by specified angle or default angle
|
||||
// "arczrot" |x | radius, [angle] | Draw an arc turning around z-axis by specified angle or default angle
|
||||
|
|
Loading…
Reference in a new issue