Commenting source of Polygon::centroid() algorithm

This commit is contained in:
Vojtech Bubnik 2021-05-07 11:54:25 +02:00
parent 52b3c655ff
commit 5c35fa4539

View file

@ -153,6 +153,7 @@ void Polygon::triangulate_convex(Polygons* polygons) const
}
// center of mass
// source: https://en.wikipedia.org/wiki/Centroid
Point Polygon::centroid() const
{
double area_sum = 0.;