Salome HOME
Edit created feature after noMoreWidgets. Restart the creation operation by click...
[modules/shaper.git] / src / GeomAPI / GeomAPI_PlanarEdges.cpp
index f7757cf7e94b7b32a3ad5f0a23067ece92cd4381..9bb3fb994dfaa1d1cf05efc47b1763910334abdb 100644 (file)
@@ -87,14 +87,13 @@ std::shared_ptr<GeomAPI_Dir> GeomAPI_PlanarEdges::dirY() const
 std::shared_ptr<GeomAPI_Dir> GeomAPI_PlanarEdges::norm() const 
 {
   if (hasPlane())
-    return myPlane->norm();
+    return myPlane->normal();
   return std::shared_ptr<GeomAPI_Dir>();
 }
 
 void GeomAPI_PlanarEdges::setPlane(const std::shared_ptr<GeomAPI_Pnt>& theOrigin,
                                    const std::shared_ptr<GeomAPI_Dir>& theDirX,
-                                   const std::shared_ptr<GeomAPI_Dir>& theDirY,
                                    const std::shared_ptr<GeomAPI_Dir>& theNorm)
 {
-  myPlane = std::shared_ptr<GeomAPI_Ax3>(new GeomAPI_Ax3(theOrigin, theDirX, theDirY, theNorm));
+  myPlane = std::shared_ptr<GeomAPI_Ax3>(new GeomAPI_Ax3(theOrigin, theDirX, theNorm));
 }
\ No newline at end of file