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.

How do I use the centroid as a vector?

MichaelPascoeMichaelPascoe Member Posts: 2,811 PRO
edited September 2020 in FeatureScript
I found the centroid of my sketch with this:
var centroid = evApproximateCentroid(context, { //Finds the centroid of the selected face.
                    "entities" : definition.selectedFace
        });

The hint says it returns a vector, but when I try to use the variable "centroid" as a position in my sketch point, it says it's not a vector. and throws this error: Precondition of skPoint failed (value.position is undefined || is2dPoint(value.position))

Code for my sketch point:
var pt = skPoint(sketch, "point1", { "position" : centroid});   

Once the point is placed, how would I query the point so that I could use it in a loft?



RENDERCAD
rendercad.ai - Photorealistic product rendering.

▚▞▚▞▚▞▚▞▚
________________________________________________________________________

Best Answers

Answers

  • MichaelPascoeMichaelPascoe Member Posts: 2,811 PRO
    I tried this:
    var centroid2d = worldToPlane(realPlane2, centroid);
    realPlane2 is the plane my sketch is on.

    I'm still failing to implement it correctly. It throws this: Call worldToPlane(Query (map), Vector (array)) does not match worldToPlane(Plane, ...)





    RENDERCAD
    rendercad.ai - Photorealistic product rendering.

    ▚▞▚▞▚▞▚▞▚
    ________________________________________________________________________
  • MichaelPascoeMichaelPascoe Member Posts: 2,811 PRO

    RENDERCAD
    rendercad.ai - Photorealistic product rendering.

    ▚▞▚▞▚▞▚▞▚
    ________________________________________________________________________
Sign In or Register to comment.