]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAPI/GeomAPI_Pln.cpp
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / GeomAPI / GeomAPI_Pln.cpp
index d018031022c9dcb84c6a11f0f2a6cd9067769fbe..5780b3d819df8a23ed80928a37b03453e752cc06 100644 (file)
@@ -34,3 +34,8 @@ boost::shared_ptr<GeomAPI_Dir> GeomAPI_Pln::direction()
   const gp_Dir& aDir = impl<gp_Pln>().Axis().Direction();
   return boost::shared_ptr<GeomAPI_Dir>(new GeomAPI_Dir(aDir.X(), aDir.Y(), aDir.Z()));
 }
+
+void GeomAPI_Pln::coefficients(double& theA, double& theB, double& theC, double& theD)
+{
+  impl<gp_Pln>().Coefficients(theA, theB, theC, theD);
+}