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.
midpoint
Discussion List
-
featurescript: How to get a midpoint
I am trying to get a midpoint of a line Here's the parameter: annotation { "Name" : "Lines", "Filter" : EntityType.EDGE && SketchObject.YES && GeometryType.LINE } definition.lines is Query; And here's some code that I wrote. const lines = evaluateQuery(context, definition.lines); for (var line in lines) { var endpoints =…
-
How do I place a circle on a face that is vertical to the midpoint of a line?
I drew an l-shaped extrusion and I want a hole in it directly above the mid point of the edge. Is there a way to select the midpoint so I can add a relation?