mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-12 17:54:18 +02:00
use __is_float
This commit is contained in:
@@ -3,7 +3,7 @@ function __shape_pie(radius, angle) =
|
|||||||
frags = __frags(radius),
|
frags = __frags(radius),
|
||||||
a_step = 360 / frags,
|
a_step = 360 / frags,
|
||||||
leng = radius * cos(a_step / 2),
|
leng = radius * cos(a_step / 2),
|
||||||
angles = __is_vector(angle) ? angle : [0:angle],
|
angles = __is_float(angle) ? [0:angle] : angle,
|
||||||
m = floor(angles[0] / a_step) + 1,
|
m = floor(angles[0] / a_step) + 1,
|
||||||
n = floor(angles[1] / a_step),
|
n = floor(angles[1] / a_step),
|
||||||
edge_r_begin = leng / cos((m - 0.5) * a_step - angles[0]),
|
edge_r_begin = leng / cos((m - 0.5) * a_step - angles[0]),
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
**/
|
**/
|
||||||
|
|
||||||
include <__private__/__frags.scad>;
|
include <__private__/__frags.scad>;
|
||||||
include <__private__/__is_vector.scad>;
|
include <__private__/__is_float.scad>;
|
||||||
include <__private__/__ra_to_xy.scad>;
|
include <__private__/__ra_to_xy.scad>;
|
||||||
include <__private__/__shape_pie.scad>;
|
include <__private__/__shape_pie.scad>;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user