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
-
ilya_baran Onshape Employees, Developers, HDM Posts: 1,215You 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