1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-04-21 22:51:59 +02:00

refactor deps

This commit is contained in:
Justin Lin 2020-01-27 09:53:06 +08:00
parent b9590c4a10
commit 16da72c02b
3 changed files with 16 additions and 17 deletions

View File

@ -8,6 +8,10 @@
*
**/
use <archimedean_spiral.scad>;
use <cross_sections.scad>;
use <polysections.scad>;
module archimedean_spiral_extrude(shape_pts, arm_distance, init_angle, point_distance, num_of_points,
rt_dir = "CT_CLK", twist = 0, scale = 1.0, triangles = "SOLID") {
points_angles = archimedean_spiral(

View File

@ -8,7 +8,8 @@
*
**/
include <__comm__/__to3d.scad>;
use <__comm__/__to3d.scad>;
use <rotate_p.scad>;
function cross_sections(shape_pts, path_pts, angles, twist = 0, scale = 1.0) =
let(

File diff suppressed because one or more lines are too long