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.
konstantin_shiriazdanov ✭✭✭✭✭
Reactions
-
Re: Conditional feature suppression?
I don't think it is possible, if you look at the code of part studio you will see each feature call is wrapped in "if (true){}" if feature is active or in "if (false){}" if featur… (View Post)1 -
Re: Moving Mate Connectors from a Part Studio to an Assembly
in OS you don't mate the assemblies, the mates are always between mate connectors of the bodies and MC's can't exist without them, so I don't think you should care about where they are defined (View Post)1 -
Re: index of item in array
you can look at source code of isIn() builtin function of standard library and modify it to return the index instead of boolean (View Post)2 -
Re: Featurescript-Vector rounding
if checking parallelism is the only aim you can use parallelVectors() function from standard library parallelVectors (vector1 is Vector, vector2 is Vector) returns boolean Returns true if two vectors… (View Post)10 -
Re: Featurescript-Orient a plane
say if your lines are in linesQuery, sketch plane is stored in planeQuery then:var skPlane = evPlane(context,{"face":planeQuery});skPlane.xAxis = evLine(context, {"edge":linesQuer… (View Post)7