1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #ifndef _GEOM_IMeasureOperations_i_HeaderFile
24 #define _GEOM_IMeasureOperations_i_HeaderFile
26 #include "GEOMImpl_Gen.hxx"
28 #include <SALOMEconfig.h>
30 #include CORBA_SERVER_HEADER(GEOM_Gen)
31 #include "GEOM_IOperations_i.hh"
32 #include "GEOM_Object_i.hh"
34 #include "GEOMImpl_IMeasureOperations.hxx"
36 class GEOM_I_EXPORT GEOM_IMeasureOperations_i :
37 public virtual POA_GEOM::GEOM_IMeasureOperations,
38 public virtual GEOM_IOperations_i
41 GEOM_IMeasureOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
42 ::GEOMImpl_IMeasureOperations* theImpl);
43 ~GEOM_IMeasureOperations_i();
45 GEOM::GEOM_IKindOfShape::shape_kind KindOfShape (GEOM::GEOM_Object_ptr theShape,
46 GEOM::ListOfLong_out theIntegers,
47 GEOM::ListOfDouble_out theDoubles);
49 void GetPosition (GEOM::GEOM_Object_ptr theShape,
50 CORBA::Double& Ox, CORBA::Double& Oy, CORBA::Double& Oz,
51 CORBA::Double& Zx, CORBA::Double& Zy, CORBA::Double& Zz,
52 CORBA::Double& Xx, CORBA::Double& Xy, CORBA::Double& Xz);
54 void GetBasicProperties (GEOM::GEOM_Object_ptr theShape,
55 CORBA::Double& theLength,
56 CORBA::Double& theSurfArea,
57 CORBA::Double& theVolume);
59 GEOM::GEOM_Object_ptr GetCentreOfMass (GEOM::GEOM_Object_ptr theShape);
61 GEOM::GEOM_Object_ptr GetNormal (GEOM::GEOM_Object_ptr theFace,
62 GEOM::GEOM_Object_ptr theOptionalPoint);
64 GEOM::GEOM_Object_ptr GetVertexByIndex (GEOM::GEOM_Object_ptr theObject,
65 CORBA::Long theIndex);
67 void GetInertia (GEOM::GEOM_Object_ptr theShape,
68 CORBA::Double& I11, CORBA::Double& I12, CORBA::Double& I13,
69 CORBA::Double& I21, CORBA::Double& I22, CORBA::Double& I23,
70 CORBA::Double& I31, CORBA::Double& I32, CORBA::Double& I33,
71 CORBA::Double& Ix , CORBA::Double& Iy , CORBA::Double& Iz);
73 void GetBoundingBox (GEOM::GEOM_Object_ptr theShape,
74 CORBA::Boolean precise,
75 CORBA::Double& Xmin, CORBA::Double& Xmax,
76 CORBA::Double& Ymin, CORBA::Double& Ymax,
77 CORBA::Double& Zmin, CORBA::Double& Zmax);
79 GEOM::GEOM_Object_ptr MakeBoundingBox (GEOM::GEOM_Object_ptr theShape,
80 CORBA::Boolean precise);
82 void GetTolerance (GEOM::GEOM_Object_ptr theShape,
83 CORBA::Double& FaceMin, CORBA::Double& FaceMax,
84 CORBA::Double& EdgeMin, CORBA::Double& EdgeMax,
85 CORBA::Double& VertMin, CORBA::Double& VertMax);
87 CORBA::Boolean CheckShape
88 (GEOM::GEOM_Object_ptr theShape,
89 GEOM::GEOM_IMeasureOperations::ShapeErrors_out theErrors);
91 CORBA::Boolean CheckShapeWithGeometry
92 (GEOM::GEOM_Object_ptr theShape,
93 GEOM::GEOM_IMeasureOperations::ShapeErrors_out theErrors);
95 char* PrintShapeErrors
96 ( GEOM::GEOM_Object_ptr theShape,
97 const GEOM::GEOM_IMeasureOperations::ShapeErrors &theErrors);
99 CORBA::Boolean CheckSelfIntersections (GEOM::GEOM_Object_ptr theShape,
100 CORBA::Long theCheckLevel,
101 GEOM::ListOfLong_out theIntersections);
103 CORBA::Boolean CheckSelfIntersectionsFast (GEOM::GEOM_Object_ptr theShape,
104 CORBA::Float theDeflection,
105 CORBA::Double theTolerance,
106 GEOM::ListOfLong_out theIntersections);
108 CORBA::Boolean FastIntersect (GEOM::GEOM_Object_ptr theShape1,
109 GEOM::GEOM_Object_ptr theShape2,
110 CORBA::Double theTolerance,
111 CORBA::Float theDeflection,
112 GEOM::ListOfLong_out theIntersections1,
113 GEOM::ListOfLong_out theIntersections2);
115 char* IsGoodForSolid (GEOM::GEOM_Object_ptr theShape);
117 char* WhatIs (GEOM::GEOM_Object_ptr theShape);
119 GEOM::ListOfBool* AreCoordsInside (GEOM::GEOM_Object_ptr theShape,
120 const GEOM::ListOfDouble& theCoords,
121 CORBA::Double theTolerance);
123 CORBA::Double GetMinDistance (GEOM::GEOM_Object_ptr theShape1,
124 GEOM::GEOM_Object_ptr theShape2,
125 CORBA::Double& X1, CORBA::Double& Y1, CORBA::Double& Z1,
126 CORBA::Double& X2, CORBA::Double& Y2, CORBA::Double& Z2);
128 CORBA::Long ClosestPoints (GEOM::GEOM_Object_ptr theShape1,
129 GEOM::GEOM_Object_ptr theShape2,
130 GEOM::ListOfDouble_out theCoords);
132 void PointCoordinates (GEOM::GEOM_Object_ptr theShape,
133 CORBA::Double& X, CORBA::Double& Y, CORBA::Double& Z);
135 CORBA::Double GetAngle (GEOM::GEOM_Object_ptr theShape1,
136 GEOM::GEOM_Object_ptr theShape2);
138 CORBA::Double GetAngleBtwVectors (GEOM::GEOM_Object_ptr theShape1,
139 GEOM::GEOM_Object_ptr theShape2);
141 // Methods for recieving radiuses of curvature of curves and surfaces
142 // in the given point
143 CORBA::Double CurveCurvatureByParam (GEOM::GEOM_Object_ptr theCurve,
144 CORBA::Double theParam);
146 CORBA::Double CurveCurvatureByPoint (GEOM::GEOM_Object_ptr theCurve,
147 GEOM::GEOM_Object_ptr thePoint);
149 CORBA::Double MaxSurfaceCurvatureByParam (GEOM::GEOM_Object_ptr theSurf,
150 CORBA::Double theUParam,
151 CORBA::Double theVParam);
153 CORBA::Double MaxSurfaceCurvatureByPoint (GEOM::GEOM_Object_ptr theSurf,
154 GEOM::GEOM_Object_ptr thePoint);
156 CORBA::Double MinSurfaceCurvatureByParam (GEOM::GEOM_Object_ptr theSurf,
157 CORBA::Double theUParam,
158 CORBA::Double theVParam);
160 CORBA::Double MinSurfaceCurvatureByPoint (GEOM::GEOM_Object_ptr theSurf,
161 GEOM::GEOM_Object_ptr thePoint);
163 ::GEOMImpl_IMeasureOperations* GetOperations()
164 { return (::GEOMImpl_IMeasureOperations*)GetImpl(); }