Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 MakePointOnLinesIntersection (GEOM::GEOM_Object_ptr theLine1,
57                                                        GEOM::GEOM_Object_ptr theLine2);
58
59    GEOM::GEOM_Object_ptr MakeTangentOnCurve (GEOM::GEOM_Object_ptr theRefCurve,
60                                              CORBA::Double theParameter);
61
62    GEOM::GEOM_Object_ptr MakeVectorDXDYDZ (CORBA::Double theDX,
63                                            CORBA::Double theDY,
64                                            CORBA::Double theDZ);
65
66    GEOM::GEOM_Object_ptr MakeVectorTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
67                                            GEOM::GEOM_Object_ptr thePnt2);
68
69    GEOM::GEOM_Object_ptr MakeLine (GEOM::GEOM_Object_ptr thePnt,
70                                    GEOM::GEOM_Object_ptr theDir);
71
72    GEOM::GEOM_Object_ptr MakeLineTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
73                                          GEOM::GEOM_Object_ptr thePnt2);
74
75    GEOM::GEOM_Object_ptr MakeLineTwoFaces (GEOM::GEOM_Object_ptr theFace1,
76                                            GEOM::GEOM_Object_ptr theFace2);
77
78    GEOM::GEOM_Object_ptr MakePlaneThreePnt (GEOM::GEOM_Object_ptr thePnt1,
79                                             GEOM::GEOM_Object_ptr thePnt2,
80                                             GEOM::GEOM_Object_ptr thePnt3,
81                                             CORBA::Double theTrimSize);
82
83    GEOM::GEOM_Object_ptr MakePlanePntVec (GEOM::GEOM_Object_ptr thePnt,
84                                           GEOM::GEOM_Object_ptr theVec,
85                                           CORBA::Double theTrimSize);
86
87    GEOM::GEOM_Object_ptr MakePlaneFace (GEOM::GEOM_Object_ptr theFace,
88                                         CORBA::Double theTrimSize);
89
90    GEOM::GEOM_Object_ptr MakeMarker (CORBA::Double theOX , CORBA::Double theOY , CORBA::Double theOZ,
91                                      CORBA::Double theXDX, CORBA::Double theXDY, CORBA::Double theXDZ,
92                                      CORBA::Double theYDX, CORBA::Double theYDY, CORBA::Double theYDZ);
93
94    GEOM::GEOM_Object_ptr MakeTangentPlaneOnFace (GEOM::GEOM_Object_ptr theFace, 
95                                                  CORBA::Double theParameterU,
96                                                  CORBA::Double theParameterV,
97                                                  CORBA::Double theTrimSize);
98
99    ::GEOMImpl_IBasicOperations* GetOperations() { return (::GEOMImpl_IBasicOperations*)GetImpl(); }
100 };
101
102 #endif