Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Interior fillet failed on thin extrusions when a tolerance is applied #4845

Open
nicboone8 opened this issue Dec 20, 2024 · 0 comments
Open
Labels
bug Something isn't working coredump Issues that contain a coredump. desktop-app Issues from the desktop app.

Comments

@nicboone8
Copy link

A fillet radius that works on a hole in a 1" plate fails on a 0.1" plate. Removing the tolerance argument from the fillet corrects the error.

Zoo.Modeling.App.2024-12-19.21-03-39.mp4
Core Dump

coredump-9db4e27c-5e30-4a0c-8fd3-4c6134f5288d.json

Reference ID: 9db4e27c-5e30-4a0c-8fd3-4c6134f5288d

KCL Code
sketch001 = startSketchOn('XZ')
  |> startProfileAt([0, 0], %)
  |> angledLine([0, 13.62], %, $rectangleSegmentA001)
  |> angledLine([
       segAng(rectangleSegmentA001) + 90,
       8.72
     ], %, $rectangleSegmentB001)
  |> angledLine([
       segAng(rectangleSegmentA001),
       -segLen(rectangleSegmentA001)
     ], %, $rectangleSegmentC001)
  |> lineTo([profileStartX(%), profileStartY(%)], %)
  |> close(%)
    |> hole(circle({ center = [1, 1], radius = .25 }, %), %)
  |> hole(circle({ center = [1, 4], radius = .25 }, %), %)
extrude001 = extrude(.1, sketch001)

sketch002 = startSketchOn(extrude001, 'END')
  |> startProfileAt([1.92, 7.51], %)
  |> yLine(-6.67, %, $edge1)
  |> xLine(4.69, %, $edge2)
  |> lineTo([profileStartX(%), profileStartY(%)], %, $edge3)
  |> close(%)
extrude002 = extrude(-.1, sketch002)

  |> fillet({
       radius = 1,
       tolerance = 0.000001,
       tags = [
         getNextAdjacentEdge(edge1),
         getNextAdjacentEdge(edge2),
         getNextAdjacentEdge(edge3)
       ]
     }, %)
@nicboone8 nicboone8 added bug Something isn't working coredump Issues that contain a coredump. desktop-app Issues from the desktop app. labels Dec 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working coredump Issues that contain a coredump. desktop-app Issues from the desktop app.
Projects
None yet
Development

No branches or pull requests

1 participant