]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM_I/GEOM_IBasicOperations_i.hh
Salome HOME
*** empty log message ***
[modules/geom.git] / src / GEOM_I / GEOM_IBasicOperations_i.hh
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef _GEOM_IBasicOperations_i_HeaderFile
22 #define _GEOM_IBasicOperations_i_HeaderFile
23
24 #include "GEOMImpl_Gen.hxx"
25
26 #include <SALOMEconfig.h>
27
28 #include CORBA_SERVER_HEADER(GEOM_Gen)
29 #include "GEOM_IOperations_i.hh"
30 #include "GEOM_Object_i.hh"
31
32 #include "GEOMImpl_IBasicOperations.hxx"
33
34 class GEOM_I_EXPORT GEOM_IBasicOperations_i :
35     public virtual POA_GEOM::GEOM_IBasicOperations,
36     public virtual GEOM_IOperations_i
37 {
38  public:
39    GEOM_IBasicOperations_i (PortableServer::POA_ptr thePOA,
40                             GEOM::GEOM_Gen_ptr theEngine,
41                             ::GEOMImpl_IBasicOperations* theImpl);
42    ~GEOM_IBasicOperations_i();
43
44    GEOM::GEOM_Object_ptr MakePointXYZ (CORBA::Double theX,
45                                        CORBA::Double theY,
46                                        CORBA::Double theZ);
47
48    GEOM::GEOM_Object_ptr MakePointWithReference (GEOM::GEOM_Object_ptr theReference,
49                                                  CORBA::Double theX,
50                                                  CORBA::Double theY,
51                                                  CORBA::Double theZ);
52
53    GEOM::GEOM_Object_ptr MakePointOnCurve (GEOM::GEOM_Object_ptr theCurve,
54                                            CORBA::Double theParameter);
55
56    GEOM::GEOM_Object_ptr MakeTangentOnCurve (GEOM::GEOM_Object_ptr theRefCurve,
57                                              CORBA::Double theParameter);
58
59    GEOM::GEOM_Object_ptr MakeVectorDXDYDZ (CORBA::Double theDX,
60                                            CORBA::Double theDY,
61                                            CORBA::Double theDZ);
62
63    GEOM::GEOM_Object_ptr MakeVectorTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
64                                            GEOM::GEOM_Object_ptr thePnt2);
65
66    GEOM::GEOM_Object_ptr MakeLine (GEOM::GEOM_Object_ptr thePnt,
67                                    GEOM::GEOM_Object_ptr theDir);
68
69    GEOM::GEOM_Object_ptr MakeLineTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
70                                          GEOM::GEOM_Object_ptr thePnt2);
71
72    GEOM::GEOM_Object_ptr MakePlaneThreePnt (GEOM::GEOM_Object_ptr thePnt1,
73                                             GEOM::GEOM_Object_ptr thePnt2,
74                                             GEOM::GEOM_Object_ptr thePnt3,
75                                             CORBA::Double theTrimSize);
76
77    GEOM::GEOM_Object_ptr MakePlanePntVec (GEOM::GEOM_Object_ptr thePnt,
78                                           GEOM::GEOM_Object_ptr theVec,
79                                           CORBA::Double theTrimSize);
80
81    GEOM::GEOM_Object_ptr MakePlaneFace (GEOM::GEOM_Object_ptr theFace,
82                                         CORBA::Double theTrimSize);
83
84    GEOM::GEOM_Object_ptr MakeMarker (CORBA::Double theOX , CORBA::Double theOY , CORBA::Double theOZ,
85                                      CORBA::Double theXDX, CORBA::Double theXDY, CORBA::Double theXDZ,
86                                      CORBA::Double theYDX, CORBA::Double theYDY, CORBA::Double theYDZ);
87
88    GEOM::GEOM_Object_ptr MakeTangentPlaneOnFace (GEOM::GEOM_Object_ptr theFace, 
89                                                  CORBA::Double theParameterU,
90                                                  CORBA::Double theParameterV,
91                                                  CORBA::Double theTrimSize);
92
93    ::GEOMImpl_IBasicOperations* GetOperations() { return (::GEOMImpl_IBasicOperations*)GetImpl(); }
94 };
95
96 #endif