mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-08 07:46:39 +02:00
format
This commit is contained in:
@@ -36,8 +36,7 @@ function _golden_spiral_from_ls_or_eql_to(from, to, point_distance, rt_dir) =
|
|||||||
);
|
);
|
||||||
|
|
||||||
function _golden_spiral(from, to, point_distance, rt_dir) =
|
function _golden_spiral(from, to, point_distance, rt_dir) =
|
||||||
from <= to ?
|
from > to ? [] : _golden_spiral_from_ls_or_eql_to(from, to, point_distance, rt_dir);
|
||||||
_golden_spiral_from_ls_or_eql_to(from, to, point_distance, rt_dir) : [];
|
|
||||||
|
|
||||||
function _golden_spiral_impl(from, to, point_distance, rt_dir) =
|
function _golden_spiral_impl(from, to, point_distance, rt_dir) =
|
||||||
_golden_spiral(from, to, point_distance, (rt_dir == "CT_CLK" ? 1 : -1));
|
_golden_spiral(from, to, point_distance, (rt_dir == "CT_CLK" ? 1 : -1));
|
Reference in New Issue
Block a user