rename PlanarRotation -> JacobiRotation

This commit is contained in:
Benoit Jacob
2010-10-19 21:56:26 -04:00
parent 9044c98cff
commit e259f71477
18 changed files with 50 additions and 50 deletions

View File

@@ -45,7 +45,7 @@ void jacobi(const MatrixType& m = MatrixType())
JacobiVector v = JacobiVector::Random().normalized();
JacobiScalar c = v.x(), s = v.y();
PlanarRotation<JacobiScalar> rot(c, s);
JacobiRotation<JacobiScalar> rot(c, s);
{
Index p = ei_random<Index>(0, rows-1);