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.
Alex_Kempen EDU
Reactions
-
Re: Find duplicate vertices in an array?
deduplicate won't work for vertices, as deduplicate uses map key access (so ==) for comparison, not tolerantEquals. Practically speaking, == is probably okay, but there are edge cases like selecting … (View Post)3 -
Re: Nuances of Featurescript 'FeatureList' Inputs
The code is valid. Note, however, that qOwnerBody() will only process the first entity the passed in query resolves to (if there is more than one). For that reason, you will likely want to evalute yo… (View Post)1 -
Re: editing logic + UIHint REMEMBER_PREVIOUS_VALUE
If I recall correctly, REMEMBER_PREVIOUS_VALUE doesn't work for anything parameters, but it does for string parameters. So you might have to jump through some hoops to serialize and de-serialize your… (View Post)1 -
PSA - New FeatureScript UI Options
Onshape recently updated the UI precondition parser, which unlocked some new options for specifying UI. Since it seems these changes didn't make it into the changelog, I figured I'd make a post highl… (View Post)4 -
Re: Finding feature ID from Featurelist?
You can use an overload of qCreatedBy to get a query for all of the things created by your selected features. Depending on the complexity of the features, you might then be able to use lastModifyingO… (View Post)1