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.
Caden_Armstrong PRO
Reactions
-
Re: Improvements to Onshape - August 29th, 2024
Good stuff is always tucked in the changelog notes. New qInFrontOfPlane is nice. (View Post)4 -
Re: Querying and extruding rectangles
You can use the filter inner loops to get the whole region and the outer area and subtract to get the inner area. var outerRegion = qSketchRegion(id +"sketch1", true); // extrude this at on… (View Post)2 -
Re: Featurescript - in a sketch how to determine if point is on a face
Have you done addDebugPoint and addDebugEntity to see if the point you are checking really is on the target face? You can also sanity check with evDistance and see if the distance is zero. (View Post)1 -
Re: How to Copy a Part from One Document to Another for Subtraction?
The derive feature. Between documents you'll just need to make sure that the source document has a version. (View Post)1 -
Re: Featurescript - in a sketch how to determine if point is on a face
If you are trying to find if a point is on a face, you have two options: qContainsPoint(face,point), and then check if the query is empty with isQueryEmpty() or evDistance() and check if the face/poi… (View Post)2