From e518146bd60f7c81c7b3d8b7ed26ce81fa268ac5 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 21 Jun 2015 16:15:15 +0000 Subject: [PATCH] Fix IfcCurveBoundedPlane implementation --- src/ifcgeom/IfcGeomShapes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeom/IfcGeomShapes.cpp b/src/ifcgeom/IfcGeomShapes.cpp index 9abc58eeb9..896863805d 100644 --- a/src/ifcgeom/IfcGeomShapes.cpp +++ b/src/ifcgeom/IfcGeomShapes.cpp @@ -619,7 +619,7 @@ bool IfcGeom::Kernel::convert(const IfcSchema::IfcCurveBoundedPlane* l, TopoDS_S IfcGeom::Kernel::convert(l->BasisSurface(), pln); gp_Trsf trsf; - trsf.SetTransformation(pln.Position()); + trsf.SetTransformation(pln.Position(), gp::XOY()); TopoDS_Wire outer; convert_wire(l->OuterBoundary(), outer);