Finding the center of a polygon

To work with geometry in Blender using the Python API, it is often necessary to find the center point of a polygon. This may be necessary for organizing various bindings, aligning objects along a polygon, positioning, and in many other cases.

For example, let’s take the simplest case – a plane (shift + a – Mesh – Plane), which consists of one polygon. Let it be the active object of the scene.

Let’s find the coordinates of the center of the plane polygon.

We can get a pointer to the single polygon that makes up our plane through the “data.polygons” property of the object. And through the polygon, we can get pointers to the corner vertices that actually form it.

However, this way we do not get pointers to the vertices themselves, but only their indices. To get vertices by their indices, we can use the “vertices” property of the object. And get the coordinates of the vertices through their “co” property.

The coordinates we got are local. To get to global coordinates, we need to multiply them by the object’s world transformation matrix.

Now let’s define a function that will get a list of coordinates as input and return the center point calculated for them.

In this function, we first sum up all the coordinates separately for each of the coordinate axes, and then divide by the number of vertices. The average value for each axis gives us the overall center point of the polygon, which we return as a vector.

To get the center point of our polygon, we call the function and pass it the previously obtained vertex coordinates in parameter.

To check it, let’s place the 3D cursor at the point with the obtained coordinates.

As we can see, the cursor has moved exactly to the center of the plane.

Bonus: the center of a polygon in 2D space

If we need to determine the center of a polygon in 2D space, for example, when working with UV maps, we can easily modify our function. We just need to remove the Z-coordinates from the calculations.

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comment
Newest
Oldest Most Voted
Inline Feedbacks
View all comments