1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-14 02:34:12 +02:00

use __is_float

This commit is contained in:
Justin Lin
2019-05-15 19:09:27 +08:00
parent 5d394d8738
commit ac209d6125

View File

@@ -8,7 +8,7 @@
*
**/
include <__private__/__is_vector.scad>;
include <__private__/__is_float.scad>;
function _q_rotation(a, v) =
let(
@@ -75,7 +75,7 @@ function _to_avect(a) =
);
function _xyz_rotation(a) =
let(ang = __is_vector(a) ? _to_avect(a) : [0, 0, a])
let(ang = __is_float(a) ? [0, 0, a] : _to_avect(a))
_m_zRotation(ang[2]) * _m_yRotation(ang[1]) * _m_xRotation(ang[0]);
function m_rotation(a, v) =