Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- 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.
Fillet not working
cory_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?

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>
0
Best Answer
-
You don't need a boolean after the fillet -- you likely have two bodies on top of each other and are filleting one of them. Try hiding the parts in the parts list on the left.Ilya Baran \ VP, Architecture and FeatureScript \ Onshape Inc5
Answers
-
What's the error? Can you link to the document so that it's possible to debug?Ilya Baran \ VP, Architecture and FeatureScript \ Onshape Inc0
-
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.

0 -
You don't need a boolean after the fillet -- you likely have two bodies on top of each other and are filleting one of them. Try hiding the parts in the parts list on the left.Ilya Baran \ VP, Architecture and FeatureScript \ Onshape Inc5
-
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.
0

