aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Jacobi_makeGivens.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-19 21:56:26 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-19 21:56:26 -0400
commite259f71477c05de231118a114398be22697feaaa (patch)
tree2438ca06bf8e7eb5a998b61ecd64334e956c2fc5 /doc/snippets/Jacobi_makeGivens.cpp
parent9044c98cff257a4f7429deaa78cae59132957db7 (diff)
rename PlanarRotation -> JacobiRotation
Diffstat (limited to 'doc/snippets/Jacobi_makeGivens.cpp')
-rw-r--r--doc/snippets/Jacobi_makeGivens.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/Jacobi_makeGivens.cpp b/doc/snippets/Jacobi_makeGivens.cpp
index 3a4defe24..4b733c306 100644
--- a/doc/snippets/Jacobi_makeGivens.cpp
+++ b/doc/snippets/Jacobi_makeGivens.cpp
@@ -1,5 +1,5 @@
Vector2f v = Vector2f::Random();
-PlanarRotation<float> G;
+JacobiRotation<float> G;
G.makeGivens(v.x(), v.y());
cout << "Here is the vector v:" << endl << v << endl;
v.applyOnTheLeft(0, 1, G.adjoint());