You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
487 B

  1. Vector3d v = Vector3d::Random(), w;
  2. Projective3d P(Matrix4d::Random());
  3. cout << "v = [" << v.transpose() << "]^T" << endl;
  4. cout << "h.homogeneous() = [" << v.homogeneous().transpose() << "]^T" << endl;
  5. cout << "(P * v.homogeneous()) = [" << (P * v.homogeneous()).transpose() << "]^T" << endl;
  6. cout << "(P * v.homogeneous()).hnormalized() = [" << (P * v.homogeneous()).eval().hnormalized().transpose() << "]^T" << endl;