1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 02:04:16 +02:00

fix wrong variable

This commit is contained in:
Justin Lin
2019-04-29 14:09:52 +08:00
parent ce6ef4c039
commit aee4e7b68a

View File

@@ -96,4 +96,4 @@ function _q_rotate_p(p, a, v) =
); );
function rotate_p(point, a, v) = function rotate_p(point, a, v) =
v == undef ? _rotate_p(point, a) : _q_rotate_p(p, a, v); v == undef ? _rotate_p(point, a) : _q_rotate_p(point, a, v);