Salome HOME
PAL17233: Projection 2D doesn't work (bis)
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IMeasureOperations.hxx
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 _GEOMImpl_IMeasureOperations_HXX_
22 #define _GEOMImpl_IMeasureOperations_HXX_
23
24 #include "GEOM_IOperations.hxx"
25
26 #include <BRepCheck_Analyzer.hxx>
27 #include <TopoDS_Shape.hxx>
28 #include <TopTools_HSequenceOfShape.hxx>
29 #include <TopTools_DataMapOfShapeListOfShape.hxx>
30 #include <TCollection_AsciiString.hxx>
31 #include <TColStd_HSequenceOfInteger.hxx>
32 #include <TColStd_HSequenceOfReal.hxx>
33 #include <gp_Ax3.hxx>
34
35 class GEOM_Engine;
36 class Handle(GEOM_Object);
37
38 class GEOMImpl_IMeasureOperations : public GEOM_IOperations {
39  public:
40   Standard_EXPORT GEOMImpl_IMeasureOperations(GEOM_Engine* theEngine, int theDocID);
41   Standard_EXPORT ~GEOMImpl_IMeasureOperations();
42
43   enum ShapeKind {
44     SK_NO_SHAPE,
45     // COMPOSITEs
46     SK_COMPOUND,
47     SK_COMPSOLID,
48     SK_SHELL,
49     SK_WIRE,
50     // SOLIDs
51     SK_SPHERE,       // full sphere
52     SK_CYLINDER,     // cylinder
53     SK_BOX,          // box with faces, parallel to global coordinate planes
54     SK_ROTATED_BOX,  // other box
55     SK_TORUS,        // full torus
56     SK_CONE,         // cone
57     SK_POLYHEDRON,   // solid, bounded by polygons
58     SK_SOLID,        // other solid
59     // FACEs
60     SK_SPHERE2D,     // spherical face (closed)
61     SK_CYLINDER2D,   // cylindrical face with defined height
62     SK_TORUS2D,      // toroidal face (closed)
63     SK_CONE2D,       // conical face with defined height
64     SK_DISK_CIRCLE,  // planar, bounded by circle
65     SK_DISK_ELLIPSE, // planar, bounded by ellipse
66     SK_POLYGON,      // planar, bounded by segments
67     SK_PLANE,        // infinite planar
68     SK_PLANAR,       // other planar
69     SK_FACE,         // other face
70     // EDGEs
71     SK_CIRCLE,       // full circle
72     SK_ARC_CIRCLE,   // arc of circle
73     SK_ELLIPSE,      // full ellipse
74     SK_ARC_ELLIPSE,  // arc of ellipse
75     SK_LINE,         // infinite segment
76     SK_SEGMENT,      // segment
77     SK_EDGE,         // other edge
78     // VERTEX
79     SK_VERTEX
80   };
81
82   Standard_EXPORT ShapeKind KindOfShape (Handle(GEOM_Object) theShape,
83                                          Handle(TColStd_HSequenceOfInteger)& theIntegers,
84                                          Handle(TColStd_HSequenceOfReal)&    theDoubles);
85
86   Standard_EXPORT void GetPosition (Handle(GEOM_Object) theShape,
87                                     Standard_Real& Ox, Standard_Real& Oy, Standard_Real& Oz,
88                                     Standard_Real& Zx, Standard_Real& Zy, Standard_Real& Zz,
89                                     Standard_Real& Xx, Standard_Real& Xy, Standard_Real& Xz);
90
91   Standard_EXPORT Handle(GEOM_Object) GetCentreOfMass (Handle(GEOM_Object) theShape);
92
93   Standard_EXPORT void GetBasicProperties (Handle(GEOM_Object) theShape,
94                                            Standard_Real& theLength,
95                                            Standard_Real& theSurfArea,
96                                            Standard_Real& theVolume);
97
98   Standard_EXPORT void GetInertia (Handle(GEOM_Object) theShape,
99                                    Standard_Real& I11, Standard_Real& I12, Standard_Real& I13,
100                                    Standard_Real& I21, Standard_Real& I22, Standard_Real& I23,
101                                    Standard_Real& I31, Standard_Real& I32, Standard_Real& I33,
102                                    Standard_Real& Ix , Standard_Real& Iy , Standard_Real& Iz);
103
104   Standard_EXPORT void GetBoundingBox (Handle(GEOM_Object) theShape,
105                                        Standard_Real& Xmin, Standard_Real& Xmax,
106                                        Standard_Real& Ymin, Standard_Real& Ymax,
107                                        Standard_Real& Zmin, Standard_Real& Zmax);
108
109   Standard_EXPORT void GetTolerance (Handle(GEOM_Object) theShape,
110                                      Standard_Real& FaceMin, Standard_Real& FaceMax,
111                                      Standard_Real& EdgeMin, Standard_Real& EdgeMax,
112                                      Standard_Real& VertMin, Standard_Real& VertMax);
113
114   Standard_EXPORT bool CheckShape (Handle(GEOM_Object)      theShape,
115                                    const Standard_Boolean   theIsCheckGeom,
116                                    TCollection_AsciiString& theDump);
117
118   Standard_EXPORT TCollection_AsciiString WhatIs (Handle(GEOM_Object) theShape);
119
120   Standard_EXPORT Standard_Real GetMinDistance (Handle(GEOM_Object) theShape1,
121                                                 Handle(GEOM_Object) theShape2,
122                                                 Standard_Real& X1, Standard_Real& Y1, Standard_Real& Z1,
123                                                 Standard_Real& X2, Standard_Real& Y2, Standard_Real& Z2);
124
125   Standard_EXPORT void PointCoordinates(Handle(GEOM_Object) theShape,
126                                         Standard_Real& theX, Standard_Real& theY, Standard_Real& theZ );
127
128  public:
129   Standard_EXPORT static gp_Ax3 GetPosition (const TopoDS_Shape& theShape);
130
131  private:
132   void StructuralDump (const BRepCheck_Analyzer& theAna,
133                        const TopoDS_Shape&       theShape,
134                        TCollection_AsciiString&  theDump);
135
136   void GetProblemShapes (const BRepCheck_Analyzer&           theAna,
137                          const TopoDS_Shape&                 theShape,
138                          Handle(TopTools_HSequenceOfShape)&  sl,
139                          Handle(TColStd_HArray1OfInteger)&   NbProblems,
140                          TopTools_DataMapOfShapeListOfShape& theMap);
141
142   void GetProblemSub (const BRepCheck_Analyzer&           theAna,
143                       const TopoDS_Shape&                 theShape,
144                       Handle(TopTools_HSequenceOfShape)&  sl,
145                       Handle(TColStd_HArray1OfInteger)&   NbProblems,
146                       const TopAbs_ShapeEnum              Subtype,
147                       TopTools_DataMapOfShapeListOfShape& theMap);
148 };
149
150 #endif