Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / GEOM_I / GEOM_IMeasureOperations_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_IMeasureOperations_i_HeaderFile
22 #define _GEOM_IMeasureOperations_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_IMeasureOperations.hxx"
33
34 class GEOM_I_EXPORT GEOM_IMeasureOperations_i :
35     public virtual POA_GEOM::GEOM_IMeasureOperations,
36     public virtual GEOM_IOperations_i
37 {
38  public:
39   GEOM_IMeasureOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
40                             ::GEOMImpl_IMeasureOperations* theImpl);
41   ~GEOM_IMeasureOperations_i();
42
43   GEOM::GEOM_IKindOfShape::shape_kind KindOfShape (GEOM::GEOM_Object_ptr  theShape,
44                                                    GEOM::ListOfLong_out   theIntegers,
45                                                    GEOM::ListOfDouble_out theDoubles);
46
47   void GetPosition (GEOM::GEOM_Object_ptr theShape,
48                     CORBA::Double& Ox, CORBA::Double& Oy, CORBA::Double& Oz,
49                     CORBA::Double& Zx, CORBA::Double& Zy, CORBA::Double& Zz,
50                     CORBA::Double& Xx, CORBA::Double& Xy, CORBA::Double& Xz);
51
52   void GetBasicProperties (GEOM::GEOM_Object_ptr theShape,
53                            CORBA::Double& theLength,
54                            CORBA::Double& theSurfArea,
55                            CORBA::Double& theVolume);
56
57   GEOM::GEOM_Object_ptr GetCentreOfMass (GEOM::GEOM_Object_ptr theShape);
58
59   GEOM::GEOM_Object_ptr GetNormal (GEOM::GEOM_Object_ptr theFace,
60                                    GEOM::GEOM_Object_ptr theOptionalPoint);
61
62   void GetInertia (GEOM::GEOM_Object_ptr theShape,
63                    CORBA::Double& I11, CORBA::Double& I12, CORBA::Double& I13,
64                    CORBA::Double& I21, CORBA::Double& I22, CORBA::Double& I23,
65                    CORBA::Double& I31, CORBA::Double& I32, CORBA::Double& I33,
66                    CORBA::Double& Ix , CORBA::Double& Iy , CORBA::Double& Iz);
67
68   void GetBoundingBox (GEOM::GEOM_Object_ptr theShape,
69                        CORBA::Double& Xmin, CORBA::Double& Xmax,
70                        CORBA::Double& Ymin, CORBA::Double& Ymax,
71                        CORBA::Double& Zmin, CORBA::Double& Zmax);
72
73   void GetTolerance (GEOM::GEOM_Object_ptr theShape,
74                      CORBA::Double& FaceMin, CORBA::Double& FaceMax,
75                      CORBA::Double& EdgeMin, CORBA::Double& EdgeMax,
76                      CORBA::Double& VertMin, CORBA::Double& VertMax);
77
78   CORBA::Boolean CheckShape (GEOM::GEOM_Object_ptr theShape,
79                              CORBA::String_out     theDescription);
80
81   CORBA::Boolean CheckShapeWithGeometry (GEOM::GEOM_Object_ptr theShape,
82                                          CORBA::String_out     theDescription);
83
84   char* WhatIs (GEOM::GEOM_Object_ptr theShape);
85
86   CORBA::Double GetMinDistance (GEOM::GEOM_Object_ptr theShape1,
87                                 GEOM::GEOM_Object_ptr theShape2,
88                                 CORBA::Double& X1, CORBA::Double& Y1, CORBA::Double& Z1,
89                                 CORBA::Double& X2, CORBA::Double& Y2, CORBA::Double& Z2);
90
91   void PointCoordinates (GEOM::GEOM_Object_ptr theShape,
92                          CORBA::Double& X, CORBA::Double& Y, CORBA::Double& Z);
93
94   CORBA::Double GetAngle (GEOM::GEOM_Object_ptr theShape1,
95                           GEOM::GEOM_Object_ptr theShape2);
96
97   ::GEOMImpl_IMeasureOperations* GetOperations()
98   { return (::GEOMImpl_IMeasureOperations*)GetImpl(); }
99 };
100
101 #endif