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.
kevin_o_toole_1 
Reactions
-
Re: XOR in Featurescript?
A && B && C... A != B (View Post)2 -
Re: const string value as map key?
Your code is fine to use in FeatureScript runtime code, but defining FS parameters (in this case, a lookup table) requires specific syntax, since parameter definitions need to created before the code… (View Post)1 -
Re: Featurescript Instantiator - addInstance result not evaluating to any bodies
Note that when not using a reference parameter, the default partQuery excludes sketches, so you'll need to specify it like const instanceQuery = addInstance(instantiator, PROFILE::build, { "part… (View Post)1 -
Re: Having trouble with opExtrude on skText
Yup, filterInnerLoops on qSketchRegion is a flag designed for exactly this kind of thing. No need for additional custom filtering. @NeilCooke It looks like filterInnerLoops used to default to "t… (View Post)1 -
Re: Access to sketch elements
Every time you create a sketch entity, you give it a sketch id (a string like "line1") which can be used to track that entity. The query which gets a particular sketch entity is named sketc… (View Post)1