1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02:00

it's documented

This commit is contained in:
Justin Lin
2019-06-02 21:04:29 +08:00
parent 8b70b3e2b4
commit 42d90d68ff
2 changed files with 0 additions and 41 deletions

View File

@@ -1,32 +0,0 @@
include <shape_taiwan.scad>;
include <in_shape.scad>;
/*
points = [
[10, 0],
[10, 10],
[-10, 10],
[-10, -10]
];*/
points = shape_taiwan(30);
%polygon(points);
pt = [-10, 9];
n = 200;
xs = rands(-10, 10, n);
ys = rands(-18, 18, n);
pts = [
for(i = [0:n])
let(p = [xs[i], ys[i]])
if(in_shape(points, p, true))
p
];
for(p = pts) {
translate(p) circle(.2);
}

View File

@@ -1,12 +1,3 @@
voronoi, bend_extrude:
https://www.thingiverse.com/thing:3650115
voronoi3d
3d version of voronoi, slow but workable
in_shape, in_line
in_shape_demo.scad
midpt_smooth
midpt_smooth.scad