Remove implemented throws, add faces and materials

This commit is contained in:
Ken Arroyo Ohori
2017-02-08 17:12:56 -06:00
parent 1755752ab7
commit 44634eb42d
2 changed files with 5 additions and 7 deletions
@@ -40,12 +40,10 @@ namespace IfcGeom {
virtual void Multiply(const ConversionResultPlacement* other) {
// TODO: Check
trsf_ = ((CgalPlacement *)other)->trsf_ * trsf_;
throw std::runtime_error("Not implemented");
}
virtual void PreMultiply(const ConversionResultPlacement* other) {
// TODO: Check
trsf_ = trsf_ * ((CgalPlacement *)other)->trsf_;
throw std::runtime_error("Not implemented");
}
virtual ConversionResultPlacement* clone() const {
return new CgalPlacement(trsf_);