1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 06:08:31 +01:00

clean code

This commit is contained in:
Justin Lin 2022-05-07 09:22:25 +08:00
parent 07c661b025
commit a2d9e02eea

View File

@ -13,10 +13,6 @@ use <__comm__/__angy_angz.scad>;
// slow but workable
module vrn3_from(points, spacing = 1) {
xs = [for(p = points) p.x];
ys = [for(p = points) abs(p.y)];
zs = [for(p = points) abs(p.z)];
space_size = max(max(points) - min(points));
half_space_size = 0.5 * space_size;
double_space_size = 2 * space_size;