1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-17 20:11:50 +02:00

updated doc

This commit is contained in:
Justin Lin
2017-03-23 09:36:38 +08:00
parent f0a4e4436e
commit 4f2d57bf8a

View File

@@ -1,6 +1,6 @@
# circular_sector
Create a circular sector. You can pass a 2 element vector to define the central angle. It provides a `fn` parameter consistent with the `$fn` parameter of the `circle` module.
Create a circular sector. You can pass a 2 element vector to define the central angle. Its `$fa`, `$fs` and `$fn` parameters are consistent with the circle module.
## Parameters
@@ -12,7 +12,7 @@ Create a circular sector. You can pass a 2 element vector to define the central
circular_sector(radius = 20, angles = [-50, -150]);
translate([-15, 0, 0]) circular_sector(radius = 20, angles = [45, 135]);
translate([15, 0, 0]) circular_sector(radius = 20, angles = [45, 135], fn = 12);
translate([15, 0, 0]) circular_sector(radius = 20, angles = [45, 135], $fn = 12);
![circular_sector](images/lib-circular_sector-1.JPG)