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: Automate lookup table creation?
lookupTablePath is a function for getting a given value of a lookup table from a lookup table parameter. Without it, a lookup table parameter (e.g. definition.myLookupTable) is just a map containing … (View Post)1 -
Re: setExternalDisambiguation - Multiple Face Replacements on a Solid Body
First off, you can use qGeometry with GeometryType.PLANE to check for planar faces - there's no need to resort to evPlane in a try silent loop: export function qNonPlanarFaces(query is Query) returns… (View Post)1 -
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