Nothing is a pointer now. Initialisation is easier…

This commit is contained in:
Ken Arroyo Ohori
2017-02-07 20:37:47 -06:00
parent 42b512960b
commit 2894b0cb92
4 changed files with 31 additions and 39 deletions
@@ -35,7 +35,7 @@ namespace IfcGeom {
virtual double Value(int i, int j) const {
// Get cell from placement as 4x3 matrix as implemented in OCCT. We'll have to check exact semantics.
return CGAL::to_double(trsf_->cartesian(i, j));
return CGAL::to_double(trsf_.cartesian(i, j));
}
virtual void Multiply(const ConversionResultPlacement* other) {
// Multiply matrix as implemented in OCCT. We'll have to check exact semantics.
@@ -74,4 +74,4 @@ namespace IfcGeom {
}
#endif
#endif