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.
Caden_Armstrong PRO
Reactions
-
Re: Best way to query threaded faces (tapped Hole and External Thread)
You could start with a smaller seed query by taking all the faces and putting it through qHoleFaces (View Post)1 -
Re: Best way to query threaded faces (tapped Hole and External Thread)
I think holes were made before named attributes were a thing, so they are found based on the value pattern. You have to take a query of seed faces and check which faces have the attribute pattern: va… (View Post)1 -
Re: Adding dimensions to sketch features via API
I've done this before, and unfortunately there is no documentation/resources. My process was to essentially reverse engineer the data structure of a sketch. Manually make a sketch dimension, and do a… (View Post)2 -
Re: How to Reference Individual Sketch Entities
Rectangles aren't a single body, they are actually just 4 line segments that are constrainted. So FeatureScript is creating 4 bodies with id "sketchsegmentid+left/right/top/bottom". So you … (View Post)2 -
Re: How to Reference Individual Sketch Entities
sketchEntityQuery(id + "sketch1", EntityType.BODY, sketchEntityId) To the Onshape dev who made this one: why doesnt this one start with q? qSketchEntityQuery follows naming conventions…or b… (View Post)4