|
|
@ -48,19 +48,22 @@ result = planter_polygon.vertices().sphere(8, combine="cut") |
|
|
|
gondor_paths, gondor_attributes = svg2paths( |
|
|
|
"/home/deck/cad_files/tree_of_gondor_small.svg" |
|
|
|
) |
|
|
|
|
|
|
|
gandalf_paths, gandalf_attributes = svg2paths("/home/deck/cad_files/gandalf.svg") |
|
|
|
mordor_paths, mordor_attributes = svg2paths("/home/deck/cad_files/mordor.svg") |
|
|
|
|
|
|
|
tolkien_paths, tolkien_attributes = svg2paths("/home/deck/cad_files/tolkien.svg") |
|
|
|
|
|
|
|
svgs_to_render = [ |
|
|
|
(gondor_paths, (95.03, -100, 0)), |
|
|
|
(gandalf_paths, (-95.03, -14.5, 85)), |
|
|
|
(gondor_paths, (95.03, -100, 0), "cut", "YZ"), |
|
|
|
(gondor_paths, (-99, 93.02, 0), "cut", "XZ"), |
|
|
|
(tolkien_paths, (-93.03, -14.5, 85), "cut", "YZ"), |
|
|
|
] |
|
|
|
|
|
|
|
if RENDER_TREES: |
|
|
|
image_objects = [] |
|
|
|
for svg_paths, translate_offsets in svgs_to_render: |
|
|
|
for svg_paths, translate_offsets, combine, planes in svgs_to_render: |
|
|
|
image_objects.append( |
|
|
|
Workplane("YZ") |
|
|
|
Workplane(planes) |
|
|
|
.center(0, 75) |
|
|
|
.addSvgPath(svg_paths[0]) |
|
|
|
.extrude(-2.0) |
|
|
@ -68,7 +71,10 @@ if RENDER_TREES: |
|
|
|
) |
|
|
|
|
|
|
|
for image_object in image_objects: |
|
|
|
result = result.cut(image_object, clean=False) |
|
|
|
if combine == "cut": |
|
|
|
result = result.cut(image_object, clean=False) |
|
|
|
if combine == "union": |
|
|
|
result = result.union(image_object, clean=False) |
|
|
|
|
|
|
|
cone = cq.Solid.makeCone(planter_radius, 33, planter_height + 95) |
|
|
|
|
|
|
|