Reverse matrix multiplication order

This commit is contained in:
Thomas Krijnen
2017-04-05 16:06:07 +02:00
parent 009f50abe1
commit 91e5b337d3
2 changed files with 3 additions and 3 deletions
@@ -192,7 +192,7 @@ bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcObjectPlacement* l, cgal_p
// } std::cout << std::endl;
// }
trsf = trsf * trsf2; // TODO: I think it's fine, but maybe should it be the other way around?
trsf = trsf2 * trsf;
// std::cout << "trsf (after multiplication)" << std::endl;
// for (int i = 0; i < 3; ++i) {