This commit is contained in:
jaseg 2024-08-14 16:15:33 +02:00
parent e238fb929c
commit 9604fcd637
2 changed files with 1 additions and 1 deletions

BIN
feedthrough1.FCStd Normal file

Binary file not shown.

View file

@ -261,7 +261,7 @@ def cli(out_svg_1, out_svg_2, out_svg_3, radius, num_meshes, mesh_width, mesh_th
tags.append(circle(center_2, r2, c2))
dim_tags += dimension((x, chord/2), (x, -chord/2), h=offset/2+5)
tags += angular_dimension(center_1, a1, -a1, large_arc=False)
tags += angular_dimension(center_2, a2, -a2, large_arc=False)
tags += angular_dimension(center_2, -a2 if offset > x else a2, a2 if offset > x else -a2, large_arc=False)
tags.append(Tag('path', fill='none', stroke_width=0.2, stroke=c1, d=f'M {x} {chord/2} L 0 0 L {x} {-chord/2}'))
tags.append(Tag('path', fill='none', stroke_width=0.2, stroke=c2, d=f'M {x} {chord/2} L {offset} 0 L {x} {-chord/2}'))