mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-24 04:28:04 +00:00
Remove implemented throws, add faces and materials
This commit is contained in:
@@ -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_);
|
||||
|
||||
Reference in New Issue
Block a user