remove extra )

This commit is contained in:
Sebastien Loriot 2022-01-27 11:03:42 +01:00 committed by GitHub
parent e07672ab37
commit 4e7edc7d94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ linear_least_squares_fitting_2(InputIterator first,
// Translate the 2nd order moment calculated about the origin to
// the center of mass to get the covariance.
covariance[0] -= mass * CGAL::square(c.x()));
covariance[0] -= mass * CGAL::square(c.x());
covariance[1] -= mass * (c.x() * c.y());
covariance[2] -= mass * (CGAL::square(c.y()));