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.

Options

How do I use the centroid as a vector?

MichaelPascoeMichaelPascoe Member Posts: 1,713 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?



Learn more about the Gospel of Christ  ( Here )

CADSharp  -  We make custom features and integrated Onshape apps!   cadsharp.com/featurescripts 💎

Best Answers

Answers

Sign In or Register to comment.