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.
Jacob_Corder PRO
Reactions
-
Re: Preserve ID through a try/catch?
const extrudeId = id + "mainBody"; startFeature(context, extrudeId); var needsAbort =true; try silent { extrude(context, extrudeId, mainDef); needsAbort =false; endFeature(context, extrudeI… (View Post)2 -
Re: Getting the geometry of a cross-section
opBoolean(context, id , { "operationType" : BooleanOperationType.INTERSECTION, "tools" : bodies, "allowSheets" : true, "keepTools":true, "eraseImprintedEd… (View Post)1 -
Re: get featureList of parent feature from a query?
@_anton is to receive credit, I didn't even think of using lastModificationFeatureId to extract it. I was surprised that opPattern actually copied the sketch as it is. I just tested it to see wh… (View Post)2 -
Re: get featureList of parent feature from a query?
@Evan_Reese Are you just trying to copy the sketch? this does it and keeps it as a sketch probably add construction filters if you want. FeatureScript 1977; import(path : "onshape/std/common.fs&… (View Post)2 -
Re: get featureList of parent feature from a query?
@_anton is close, but to get the sketch features id you need take the first element in the id. So ownerSketchId[0] should do it. (View Post)1














