Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.

First time visiting? Here are some places to start:
  1. Looking for a certain topic? Check out the categories filter or use Search (upper right).
  2. Need support? Ask a question to our Community Support category.
  3. Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
  4. 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.

evPlane parameters

hervé_piponhervé_pipon Member Posts: 60 ✭✭
Hello
I want to create a plane normal to a line

I tried:

evPlane(context, {
                "point" : qCreatedBy(id + "apex", EntityType.VERTEX),
                "normalTo" : qCreatedBy( newId, EntityType.EDGE)
            });
but got the error Precondition of evPlane failed (arg.face is Query)

How can I select the point and lines I created, to put into evPlane parameters .

ref:
https://cad.onshape.com/documents/b5eb7563c9f8d34013c45353/w/a8328a22ba0852fc6de829ba/e/3946d40111b0b87308a02466

Comments

  • hervé_piponhervé_pipon Member Posts: 60 ✭✭
    In fact , I changed my mind and didn't want to use a query, as I have the construction points in the script.
    I'm finally using
    const sketchPlane_0 = plane(ApexPoint, FirstRadius);
    It works and it's simpler.
Sign In or Register to comment.