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.
Jacob_Corder PRO
Reactions
-
Re: distance measurement speed tips?
yep. for evDistance, calling the @ version eliminates building structures like lines,vectors and other types. var dist = @evDistance(context, { "side0" : something, "side1" : some… (View Post)2 -
Re: Untrim?
@S1mon annotation { "Feature Type Name" : "Base Surface" } export const baseSurface = defineFeature(function(context is Context, id is Id, definition is map) precondition { annota… (View Post)2 -
Re: Untrim?
to fill the holes in there are 2 ways. fill the holes using fill, then use replaceFace on the new face and replace with the outer face. if that fails, delete the new face with heal option. if that fa… (View Post)1 -
Re: angleBetween with a reference
If you guys want fast, get rid of vectors, planes, lines. use numerics only, that is what I do. Use onshapes @functions @evEdgeTangentLines is 3x faster than evEdgeTangentLines. @evDistance is much f… (View Post)1 -
Re: angleBetween with a reference
try this. its old code i had for measuring tangency between edges, i reversed the output to work for minimum angle. it could certainly be rewritten. annotation { "Feature Type Name" : "… (View Post)1