From 810f298c70d8ff28d75577dc2516965d27b105f6 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 23 Jun 2019 09:33:03 +0800 Subject: [PATCH] refactor --- src/along_with.scad | 2 +- src/{__private__ => matrix/__comm__}/__m_rotation.scad | 0 src/path_extrude.scad | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{__private__ => matrix/__comm__}/__m_rotation.scad (100%) diff --git a/src/along_with.scad b/src/along_with.scad index f66fedd3..0553dee5 100644 --- a/src/along_with.scad +++ b/src/along_with.scad @@ -10,7 +10,7 @@ include <__private__/__angy_angz.scad>; include <__private__/__to3d.scad>; -include <__private__/__m_rotation.scad>; +include ; module along_with(points, angles, twist = 0, scale = 1.0, method = "AXIS_ANGLE") { leng_points = len(points); diff --git a/src/__private__/__m_rotation.scad b/src/matrix/__comm__/__m_rotation.scad similarity index 100% rename from src/__private__/__m_rotation.scad rename to src/matrix/__comm__/__m_rotation.scad diff --git a/src/path_extrude.scad b/src/path_extrude.scad index 10a51f41..678acc12 100644 --- a/src/path_extrude.scad +++ b/src/path_extrude.scad @@ -10,7 +10,7 @@ include <__private__/__to3d.scad>; include <__private__/__angy_angz.scad>; -include <__private__/__m_rotation.scad>; +include ; module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale = 1.0, closed = false, method = "AXIS_ANGLE") { sh_pts = len(shape_pts[0]) == 3 ? shape_pts : [for(p = shape_pts) __to3d(p)];