From aee4e7b68abdc13ddc64c5b2ff3fa3249ba3242b Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Mon, 29 Apr 2019 14:09:52 +0800 Subject: [PATCH] fix wrong variable --- src/rotate_p.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rotate_p.scad b/src/rotate_p.scad index ab8aab65..7480cfcb 100644 --- a/src/rotate_p.scad +++ b/src/rotate_p.scad @@ -96,4 +96,4 @@ function _q_rotate_p(p, 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);