blob: b714adcc3591d6c8f15c1d8482fb6c4bc0d98c21 [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001Vector4d v = Vector4d::Random();
2Projective3d P(Matrix4d::Random());
3cout << "v = " << v.transpose() << "]^T" << endl;
4cout << "v.hnormalized() = " << v.hnormalized().transpose() << "]^T" << endl;
5cout << "P*v = " << (P*v).transpose() << "]^T" << endl;
Austin Schuhc55b0172022-02-20 17:52:35 -08006cout << "(P*v).hnormalized() = " << (P*v).hnormalized().transpose() << "]^T" << endl;