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: Query "bodies this side of plane "?
Not with just a query. A simple solution is to just evaluate all part bounding boxes and check the bounds directly. To make it faster, you could evaluate 1 bound instead of 6 with a clever evDistance… (View Post)2 -
Re: Featurescript - Manipulator
@Hugh_Goodbody It seems like you're on the right track. You'll next need to add that manipulator with the addManipulators() function, and control its effect with a manipulator change function. A full… (View Post)1 -
Re: Featurescript - Manipulator
The X_AXIS is a Line (which specifies both a direction and an origin point) while axisDirection wants a direction. You can instead use X_AXIS.direction, or X_DIRECTION, or vector(1, 0, 0), which are … (View Post)1 -
Re: Make a Configuration Variable that can accept a FS array/ any FS expression
@George_Anderson If that configured part studio genuinely needs to depend on an arbitrarily long array of inputs, then you are correct: The best solution is passing and parsing a string. If you can l… (View Post)1 -
Re: Centred Text in FeatureScript
@alan_budden The code seems reasonable at first glance. Is it possible the extrude remove is simply pointing the wrong way? That would be fixed with "oppositeDirection" : true in the extrud… (View Post)1