Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.

First time visiting? Here are some places to start:
  1. Looking for a certain topic? Check out the categories filter or use Search (upper right).
  2. Need support? Ask a question to our Community Support category.
  3. Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
  4. Be respectful, on topic and if you see a problem, Flag it.

If you would like to contact our Community Manager personally, feel free to send a private message or an email.

Options

Fillet not working

cory_isaacsoncory_isaacson Member, Developers Posts: 43 PRO
This query is valid, it selects the edge that I want to fillet.

Any reason why the fillet is not working?
</code><code>// Query for the line between the points.<br>    var upperLeftEdgeQuery is Query = qGeometry(upperLeftPointsQuery, GeometryType.LINE);<br>    logMessage(context, "upperLeftEdgeQuery", upperLeftEdgeQuery);<br>    <br>    // Perform the fillet.<br>    opFillet(context, id + "fillet1", {<br>                "entities" : upperLeftEdgeQuery,<br>                "radius" : value.filletRadius<br>    <span>});<br><br></span>



Best Answer

Answers

  • Options
    ilya_baranilya_baran Onshape Employees, Developers, HDM Posts: 1,178
    What's the error?  Can you link to the document so that it's possible to debug?
    Ilya Baran \ VP, Architecture and FeatureScript \ Onshape Inc
  • Options
    cory_isaacsoncory_isaacson Member, Developers Posts: 43 PRO
    There is no error, it just doesn't do anything (or looked that way). Now I think I see the issue, I added a query for the fillet after it is complete (see the image below). It looks like it is doing the fillet properly, but the remainder of the corner is still there. Do I need to do a boolean after the fillet? When I do the fillet through the normal part studio it works as expected.


  • Options
    cory_isaacsoncory_isaacson Member, Developers Posts: 43 PRO
    Thanks. I see what happened, it was just because the debug was highlighting the part before the fillet and it didn't update. Once the dialog was closed it all looks perfect.
Sign In or Register to comment.