Salome HOME
Feature #524: 4.01. Revolution feature (not complete!)
[modules/shaper.git] / src / GeomAPI / GeomAPI_Pln.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomAPI_Pln.cpp
4 // Created:     23 Apr 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include<GeomAPI_Pln.h>
8 #include <GeomAPI_Ax3.h>
9 #include <GeomAPI_Pnt.h>
10 #include <GeomAPI_Dir.h>
11
12 #include<gp_Pln.hxx>
13
14 using namespace std;
15
16 GeomAPI_Pln::GeomAPI_Pln(const std::shared_ptr<GeomAPI_Ax3>& theAxis)
17 : GeomAPI_Interface(new gp_Ax3(theAxis->impl<gp_Ax3>()))
18 {
19 }
20
21 GeomAPI_Pln::GeomAPI_Pln(const std::shared_ptr<GeomAPI_Pnt>& thePoint,
22                          const std::shared_ptr<GeomAPI_Dir>& theNormal)
23     : GeomAPI_Interface(new gp_Pln(thePoint->impl<gp_Pnt>(), theNormal->impl<gp_Dir>()))
24 {
25 }
26
27 GeomAPI_Pln::GeomAPI_Pln(const double theA, const double theB, const double theC, const double theD)
28     : GeomAPI_Interface(new gp_Pln(theA, theB, theC, theD))
29 {
30 }
31
32 std::shared_ptr<GeomAPI_Pnt> GeomAPI_Pln::location()
33 {
34   gp_Pnt aLoc = impl<gp_Pln>().Location();
35   return std::shared_ptr<GeomAPI_Pnt>(new GeomAPI_Pnt(aLoc.X(), aLoc.Y(), aLoc.Z()));
36 }
37
38 std::shared_ptr<GeomAPI_Dir> GeomAPI_Pln::direction()
39 {
40   const gp_Dir& aDir = impl<gp_Pln>().Axis().Direction();
41   return std::shared_ptr<GeomAPI_Dir>(new GeomAPI_Dir(aDir.X(), aDir.Y(), aDir.Z()));
42 }
43
44 void GeomAPI_Pln::coefficients(double& theA, double& theB, double& theC, double& theD)
45 {
46   impl<gp_Pln>().Coefficients(theA, theB, theC, theD);
47 }