| 14 | using namespace ifcopenshell::geometry::taxonomy; |
| 15 | |
| 16 | void IfcGeom::ConversionResult::append(ifcopenshell::geometry::taxonomy::matrix4::ptr trsf) { |
| 17 | placement_ = make<matrix4>(placement_->ccomponents() * trsf->ccomponents()); |
| 18 | } |
| 19 | |
| 20 | void IfcGeom::ConversionResult::prepend(ifcopenshell::geometry::taxonomy::matrix4::ptr trsf) { |
| 21 | placement_ = make<matrix4>(trsf->ccomponents() * placement_->ccomponents()); |
no outgoing calls