mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
Removed sequences from operations
This commit is contained in:
parent
4ac722feea
commit
d3dc0e0b15
106 changed files with 3653 additions and 3566 deletions
|
|
@ -64,7 +64,7 @@ with BuildPart() as three_d:
|
|||
|
||||
with BuildLine() as arrow_left:
|
||||
t1 = TangentArc((0, 0), (1, 0.75), tangent=(1, 0))
|
||||
mirror(t1, about=Plane.XZ)
|
||||
mirror(Plane.XZ, t1)
|
||||
|
||||
ext_line_length = font_height * 0.5
|
||||
dim_line_length = (logo_width - build_width - 2 * font_height * 0.05) / 2
|
||||
|
|
@ -75,9 +75,9 @@ with BuildLine() as extension_lines:
|
|||
(logo_width, -ext_line_length - font_height * 0.1),
|
||||
)
|
||||
with Locations(l1 @ 0.5):
|
||||
add(*arrow_left.line)
|
||||
add(arrow_left.line)
|
||||
with Locations(l2 @ 0.5):
|
||||
add(*arrow_left.line, rotation=180.0)
|
||||
add(arrow_left.line, rotation=180.0)
|
||||
Line(l1 @ 0.5, l1 @ 0.5 + Vector(dim_line_length, 0))
|
||||
Line(l2 @ 0.5, l2 @ 0.5 - Vector(dim_line_length, 0))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue