1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
echo(version=version());
%import("projection.stl");
// projection() without the cut = true parameter will project
// the outline of the object onto the X/Y plane. The result is
// a 2D shape.
color("red")
translate([0, 0, -20])
linear_extrude(height = 2, center = true)
difference() {
square(30, center = true);
projection()
import("projection.stl");
}
color("green")
rotate([0, 90, 0])
translate([0, 0, -20])
linear_extrude(height = 2, center = true)
difference() {
square(30, center = true);
projection()
rotate([0, 90, 0])
import("projection.stl");
}
color("cyan")
rotate([-90, 0, 0])
translate([0, 0, 20])
linear_extrude(height = 2, center = true)
difference() {
square(30, center = true);
projection()
rotate([90, 0, 0])
import("projection.stl");
}
// Including the cut = true uses the outline of the cut at
// the X/Y plane.at Z = 0. This can make internal features
// of the model visible.
color("yellow", 0.5)
translate([0, 0, 20])
linear_extrude(height = 2, center = true)
difference() {
square(30, center = true);
projection(cut = true)
import("projection.stl");
}
// Written in 2015 by Torsten Paul <Torsten.Paul@gmx.de>
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to the
// public domain worldwide. This software is distributed without any
// warranty.
//
// You should have received a copy of the CC0 Public Domain
// Dedication along with this software.
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|