Hello,
I don't know if this is intentional, but it sure is confusing. The [Polygon Center] component computes the center as the mean of all the vertices in a polygon. According to Wikipedia, it equals this:
The centroid of a finite set of
points
in
is
However the center of a polygon by decomposition is this.
The centroid of a plane figure
can be computed by dividing it into a finite number of simpler figures
, computing the centroid
and area
of each part, and then computing
Or this in general:
The centroid of a non-self-intersecting closed polygon defined by n vertices (x0,y0), (x1,y1), ..., (xn−1,yn−1) is the point (Cx, Cy), where
and where A is the polygon's signed area,
Shouldn't the [Polygon Center] use this formula instead, or clarify that the "center" given is the mean?
EDIT: Sorry to have posted this in VB, C# and Python Coding. I meant to post it in Errors, Bugs and Oversights.
Daniel Piker
Just for triangles there are literally thousands of possible definitions for what is meant by the center.
I'm not exaggerating - check out this encyclopedia of triangle centers !
While there probably aren't quite so many that apply to general polygons, there are still a lot of possibilities :)
Sep 22, 2013
David Rutten
Polygon center computes two different centroids. Vertex average (which is admittedly a terrible way to define a center, as the shape of a polygon doesn't really matter much) and Edge average (which is a lot better and also the only result you actually see the preview of).
I can certainly add more algorithms as long as they're quick to compute. Any suggestion (source or pseudo code please, no mathematical argle-bargle, can't read that) on which one you'd like to see?
--
David Rutten
david@mcneel.com
Tirol, Austria
Sep 22, 2013