mirror of
https://github.com/gumyr/build123d.git
synced 2026-05-10 22:23:10 -07:00
fix issue 1296
Addresses [#1296](https://github.com/gumyr/build123d/issues/1296) by reducing radius by 1e-11 to avoid ChFi2dFilletAlgo failure when split vertex equals adjacent edge vertex.
This commit is contained in:
parent
b239e69dbf
commit
f237a091ab
1 changed files with 3 additions and 0 deletions
|
|
@ -307,6 +307,9 @@ def _solve_wire_fillet_corner_chfi2d(
|
|||
corner.connected_edges[1].wrapped,
|
||||
Plane.XY.wrapped,
|
||||
)
|
||||
|
||||
if not fillet_builder.Perform(radius):
|
||||
radius -= 1e-11
|
||||
|
||||
vertex_point = BRep_Tool.Pnt_s(corner.vertex.wrapped)
|
||||
if (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue