From 4e382cea8ec62599a26ac356df81e25c1a76b4af Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 22 Apr 2017 21:27:17 +0800 Subject: [PATCH] updated docs --- docs/lib-line3d.md | 2 +- docs/lib-polyline3d.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lib-line3d.md b/docs/lib-line3d.md index 12dc85d0..16a4ea16 100644 --- a/docs/lib-line3d.md +++ b/docs/lib-line3d.md @@ -9,7 +9,7 @@ Creates a 3D line from two points. - `thickness` : The line thickness. - `p1Style` : The end-cap style of the point `p1`. The value must be `"CAP_BUTT"`, `"CAP_CIRCLE"` or `"CAP_SPHERE"`. The default value is `"CAP_CIRCLE"`. - `p2Style` : The end-cap style of the point `p2`. The value must be `"CAP_BUTT"`, `"CAP_CIRCLE"` or `"CAP_SPHERE"`. The default value is `"CAP_CIRCLE"`. -- `$fa`, `$fs`, `$fn` : Used by the `circle` or `sphere` module internally. Check [the circle module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_the_2D_Subsystem#circle) or [the sphere module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Primitive_Solids#sphere) for more details. +- `$fa`, `$fs`, `$fn` : Used by the `circle` or `sphere` module internally. Check [the circle module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_the_2D_Subsystem#circle) or [the sphere module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Primitive_Solids#sphere) for more details. The final fragments of a circle will be a multiple of 4 to fit edges. ## Examples diff --git a/docs/lib-polyline3d.md b/docs/lib-polyline3d.md index 04a7f7b1..5478b6a1 100644 --- a/docs/lib-polyline3d.md +++ b/docs/lib-polyline3d.md @@ -8,7 +8,7 @@ Creates a polyline from a list of `[x, y, z]` coordinates. It depends on the `li - `thickness` : The line thickness. - `startingStyle` : The end-cap style of the starting point. The value must be `"CAP_BUTT"`, `"CAP_CIRCLE"` or `"CAP_SPHERE"`. The default value is `"CAP_CIRCL"`. - endingStyle : The end-cap style of the ending point. The value must be `"CAP_BUTT"`, `"CAP_CIRCLE"` or `"CAP_SPHERE"`. The default value is `"CAP_CIRCLE"`. -- `$fa`, `$fs`, `$fn` : Used by the `circle` or `sphere` module internally. Check [the circle module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_the_2D_Subsystem#circle) or [the sphere module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Primitive_Solids#sphere) for more details. +- `$fa`, `$fs`, `$fn` : Used by the `circle` or `sphere` module internally. Check [the circle module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_the_2D_Subsystem#circle) or [the sphere module](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Primitive_Solids#sphere) for more details. The final fragments of a circle will be a multiple of 4 to fit edges if possible. ## Examples