Browse Source

add tolkien image, add another tree

master
wes 11 months ago
parent
commit
4542d15a70
  1. 18
      planter.py
  2. 4
      svg_path.py
  3. 117
      tolkien.svg

18
planter.py

@ -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)

4
svg_path.py

@ -87,11 +87,9 @@ def addSvgPath(self, path):
if isinstance(p, svgpathtools.CubicBezier):
coords = (tpl(p.start), tpl(p.control1), tpl(p.control2), tpl(p.end))
res = res.bezier(coords)
print("cubic bezier")
elif isinstance(p, svgpathtools.QuadraticBezier):
coords = (tpl(p.start), tpl(p.control), tpl(p.end))
res = res.bezier(coords)
print("quadratic bezier")
pass
elif isinstance(p, svgpathtools.Arc):
arc_id += 1
@ -106,10 +104,8 @@ def addSvgPath(self, path):
angle1=degrees(theta1),
angle2=degrees(theta1 + delta_theta),
)
print("ellipse arc")
elif isinstance(p, svgpathtools.Line):
res = res.lineTo(p.end.real, p.end.imag)
print("line")
if path_start == p.end:
path_start = None

117
tolkien.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

Loading…
Cancel
Save