Salome HOME
Additional fix for the issue "16219: EDF PAL 469: "RemoveFromStudy" Function": dump...
[modules/geom.git] / src / GEOM_I / GEOM_IMeasureOperations_i.hh
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 #ifndef _GEOM_IMeasureOperations_i_HeaderFile
23 #define _GEOM_IMeasureOperations_i_HeaderFile
24
25 #include "GEOMImpl_Gen.hxx"
26
27 #include <SALOMEconfig.h>
28
29 #include CORBA_SERVER_HEADER(GEOM_Gen)
30 #include "GEOM_IOperations_i.hh"
31 #include "GEOM_Object_i.hh"
32
33 #include "GEOMImpl_IMeasureOperations.hxx"
34
35 class GEOM_I_EXPORT GEOM_IMeasureOperations_i :
36     public virtual POA_GEOM::GEOM_IMeasureOperations,
37     public virtual GEOM_IOperations_i
38 {
39  public:
40   GEOM_IMeasureOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
41                             ::GEOMImpl_IMeasureOperations* theImpl);
42   ~GEOM_IMeasureOperations_i();
43
44   GEOM::GEOM_IKindOfShape::shape_kind KindOfShape (GEOM::GEOM_Object_ptr  theShape,
45                                                    GEOM::ListOfLong_out   theIntegers,
46                                                    GEOM::ListOfDouble_out theDoubles);
47
48   void GetPosition (GEOM::GEOM_Object_ptr theShape,
49                     CORBA::Double& Ox, CORBA::Double& Oy, CORBA::Double& Oz,
50                     CORBA::Double& Zx, CORBA::Double& Zy, CORBA::Double& Zz,
51                     CORBA::Double& Xx, CORBA::Double& Xy, CORBA::Double& Xz);
52
53   void GetBasicProperties (GEOM::GEOM_Object_ptr theShape,
54                            CORBA::Double& theLength,
55                            CORBA::Double& theSurfArea,
56                            CORBA::Double& theVolume);
57
58   GEOM::GEOM_Object_ptr GetCentreOfMass (GEOM::GEOM_Object_ptr theShape);
59
60   GEOM::GEOM_Object_ptr GetNormal (GEOM::GEOM_Object_ptr theFace,
61                                    GEOM::GEOM_Object_ptr theOptionalPoint);
62
63   GEOM::GEOM_Object_ptr GetVertexByIndex (GEOM::GEOM_Object_ptr theObject,
64                                           CORBA::Long theIndex);
65
66   void GetInertia (GEOM::GEOM_Object_ptr theShape,
67                    CORBA::Double& I11, CORBA::Double& I12, CORBA::Double& I13,
68                    CORBA::Double& I21, CORBA::Double& I22, CORBA::Double& I23,
69                    CORBA::Double& I31, CORBA::Double& I32, CORBA::Double& I33,
70                    CORBA::Double& Ix , CORBA::Double& Iy , CORBA::Double& Iz);
71
72   void GetBoundingBox (GEOM::GEOM_Object_ptr theShape,
73                        CORBA::Double& Xmin, CORBA::Double& Xmax,
74                        CORBA::Double& Ymin, CORBA::Double& Ymax,
75                        CORBA::Double& Zmin, CORBA::Double& Zmax);
76
77   void GetTolerance (GEOM::GEOM_Object_ptr theShape,
78                      CORBA::Double& FaceMin, CORBA::Double& FaceMax,
79                      CORBA::Double& EdgeMin, CORBA::Double& EdgeMax,
80                      CORBA::Double& VertMin, CORBA::Double& VertMax);
81
82   CORBA::Boolean CheckShape (GEOM::GEOM_Object_ptr theShape,
83                              CORBA::String_out     theDescription);
84
85   CORBA::Boolean CheckShapeWithGeometry (GEOM::GEOM_Object_ptr theShape,
86                                          CORBA::String_out     theDescription);
87
88   char* IsGoodForSolid (GEOM::GEOM_Object_ptr theShape);
89
90   char* WhatIs (GEOM::GEOM_Object_ptr theShape);
91
92   GEOM::ListOfBool* AreCoordsInside (GEOM::GEOM_Object_ptr theShape,
93                                      const GEOM::ListOfDouble& theCoords,
94                                      CORBA::Double theTolerance);
95
96   CORBA::Double GetMinDistance (GEOM::GEOM_Object_ptr theShape1,
97                                 GEOM::GEOM_Object_ptr theShape2,
98                                 CORBA::Double& X1, CORBA::Double& Y1, CORBA::Double& Z1,
99                                 CORBA::Double& X2, CORBA::Double& Y2, CORBA::Double& Z2);
100
101   void PointCoordinates (GEOM::GEOM_Object_ptr theShape,
102                          CORBA::Double& X, CORBA::Double& Y, CORBA::Double& Z);
103
104   CORBA::Double GetAngle (GEOM::GEOM_Object_ptr theShape1,
105                           GEOM::GEOM_Object_ptr theShape2);
106
107   CORBA::Double GetAngleBtwVectors (GEOM::GEOM_Object_ptr theShape1,
108                                     GEOM::GEOM_Object_ptr theShape2);
109
110   // Methods for recieving radiuses of curvature of curves and surfaces
111   // in the given point
112   CORBA::Double CurveCurvatureByParam (GEOM::GEOM_Object_ptr theCurve,
113                                        CORBA::Double theParam);
114
115   CORBA::Double CurveCurvatureByPoint (GEOM::GEOM_Object_ptr theCurve,
116                                        GEOM::GEOM_Object_ptr thePoint);
117
118   CORBA::Double MaxSurfaceCurvatureByParam (GEOM::GEOM_Object_ptr theSurf,
119                                             CORBA::Double theUParam,
120                                             CORBA::Double theVParam);
121
122   CORBA::Double MaxSurfaceCurvatureByPoint (GEOM::GEOM_Object_ptr theSurf,
123                                             GEOM::GEOM_Object_ptr thePoint);
124
125   CORBA::Double MinSurfaceCurvatureByParam (GEOM::GEOM_Object_ptr theSurf,
126                                             CORBA::Double theUParam,
127                                             CORBA::Double theVParam);
128
129   CORBA::Double MinSurfaceCurvatureByPoint (GEOM::GEOM_Object_ptr theSurf,
130                                             GEOM::GEOM_Object_ptr thePoint);
131
132   ::GEOMImpl_IMeasureOperations* GetOperations()
133   { return (::GEOMImpl_IMeasureOperations*)GetImpl(); }
134 };
135
136 #endif