Clifford Wolf:

Added GEB cube example



git-svn-id: http://svn.clifford.at/openscad/trunk@60 b57f626f-c46c-0410-a088-ec61d464b74c
stl_dim
clifford 2009-07-18 11:35:32 +00:00
parent e317997714
commit 4c03dac385
2 changed files with 3270 additions and 0 deletions

3238
examples/example008.dxf Normal file

File diff suppressed because it is too large Load Diff

32
examples/example008.scad Normal file
View File

@ -0,0 +1,32 @@
difference()
{
intersection()
{
translate([ -25 -25 -25])
dxf_linear_extrude(file = "example008.dxf",
layer = "G", height = 50, convexity = 3);
rotate(90, [1 0 0])
translate([ -25 -125 -25])
dxf_linear_extrude(file = "example008.dxf",
layer = "E", height = 50, convexity = 3);
rotate(90, [0 1 0])
translate([ -125 -125 -25])
dxf_linear_extrude(file = "example008.dxf",
layer = "B", height = 50, convexity = 3);
}
intersection()
{
translate([ -125 -25 -25])
dxf_linear_extrude(file = "example008.dxf",
layer = "X", height = 50, convexity = 1);
rotate(90, [0 1 0])
translate([ -125 -25 -25])
dxf_linear_extrude(file = "example008.dxf",
layer = "X", height = 50, convexity = 1);
}
}