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: Why can I not use variables in math expressions?
Right, an operation like sqrt(1 meter) isn't well-defined: Does it mean 1 meter? 10 centimeters? Or nothing at all? Onshape says the latter :smile: If #X has length units, you can use an expression l… (View Post)3 -
Re: Replicating Offset behavior in FeatureScript
You're correct: There's no direct way to do a 2D offset of sketch entities in FeatureScript. For your case, I would suggest holding off on doing the offset until you can do a 3D thicken. This would i… (View Post)2 -
Re: Featurescript: building arrays
For posterity, and since we are lacking solid documentation on this, I'll add a bit more detail: If implemented in a language like C, your concerns about append() would absolutely be legitimate. Howe… (View Post)2 -
Re: More to configurations.
https://cad.onshape.com/help/Content/numeric-fields.htm has some info on parameter expressions. Note that these expressions are evaluated as FeatureScript, so anything that's valid FeatureScript also… (View Post)1 -
Re: How to properly use: setFeatureComputedParameter()
FYI, in order to use #someValue in templates, you need either definition.someValue to be a parameter or setFeatureComputedParameter("someValue", ...). No need for both, but setFeatureComput… (View Post)2