mirror of https://github.com/CGAL/cgal
remove extra )
This commit is contained in:
parent
e07672ab37
commit
4e7edc7d94
|
|
@ -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()));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue