Minor improvement

This commit is contained in:
Roger Maitland 2023-04-03 11:32:35 -04:00
parent dfd306f67a
commit 0b13e16b5a
2 changed files with 4 additions and 13 deletions

View file

@ -26,9 +26,9 @@ class Shamrock(BaseSketchObject):
b1 = Bezier(b0 @ 1, (136, 431), (73, 589), (179, 643))
b2 = Bezier(b1 @ 1, (151, 747), (293, 770), (360, 679))
b3 = Bezier(b2 @ 1, (358, 736), (366, 789), (392, 840))
l0 = Line(b3 @ 1, (407, 834))
b4 = Bezier(l0 @ 1, (366, 781), (374, 670), (374, 670))
b5 = Bezier(b4 @ 1, (373, 794), (506, 789), (528, 727))
l0 = Line(b3 @ 1, (420, 820))
b4 = Bezier(l0 @ 1, (366, 781), (374, 670), (380, 670))
b5 = Bezier(b4 @ 1, (400, 794), (506, 789), (528, 727))
b6 = Bezier(b5 @ 1, (636, 733), (638, 578), (507, 541))
b7 = Bezier(b6 @ 1, (628, 559), (651, 380), (575, 365))
b8 = Bezier(b7 @ 1, (592, 269), (420, 268), (417, 361))

View file

@ -35,16 +35,7 @@ from typing import Union
from build123d.build_common import Builder, logger
from build123d.build_enums import Mode
from build123d.geometry import Location, Plane
from build123d.topology import (
Compound,
Edge,
Face,
Part,
ShapeList,
Solid,
Vertex,
Wire,
)
from build123d.topology import Compound, Edge, Face, Part, Solid, Wire
class BuildPart(Builder):