1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02:00
This commit is contained in:
Justin Lin
2019-06-23 09:33:03 +08:00
parent 0408ec9cbe
commit 810f298c70
3 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
include <__private__/__angy_angz.scad>;
include <__private__/__to3d.scad>;
include <__private__/__m_rotation.scad>;
include <matrix/__comm__/__m_rotation.scad>;
module along_with(points, angles, twist = 0, scale = 1.0, method = "AXIS_ANGLE") {
leng_points = len(points);

View File

@@ -10,7 +10,7 @@
include <__private__/__to3d.scad>;
include <__private__/__angy_angz.scad>;
include <__private__/__m_rotation.scad>;
include <matrix/__comm__/__m_rotation.scad>;
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)];