Salome HOME
3c4277ae909c341b558ca65a3de154de45192041
[modules/geom.git] / src / GEOMUtils / GEOMUtils_ShapeStatistics.hxx
1 // Copyright (C) 2015-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File   : GEOMUtils_ShapeStatisticsDlg.hxx
21 // Author : Alexander KOVALEV, OPEN CASCADE S.A.S.
22
23 #ifndef _GEOMUtils_ShapeStatistics_HXX_
24 #define _GEOMUtils_ShapeStatistics_HXX_
25
26 #include <list>
27 #include <map>
28 #include <vector>
29
30 #include <TopoDS_Shape.hxx>
31  
32 namespace GEOMUtils
33 {
34   // struct to store range data
35   typedef struct { double min; double max; long count; std::list<long> indices; } Range;
36   // distribution is a set of ranges
37   typedef std::vector<Range> Distribution;
38
39   // function to get measures of entities and compute range for list of shapes
40   Standard_EXPORT std::map<int,double> ComputeMeasures(
41     std::list<TopoDS_Shape> shapes, 
42     TopAbs_ShapeEnum entity, 
43     Range &range );
44
45   // function to get distribution data for single shape
46   Standard_EXPORT Distribution ComputeDistribution(
47     TopoDS_Shape shape, 
48     TopAbs_ShapeEnum entity, 
49     int intervals, 
50     Range range );
51
52   // function to get distribution data for list of shapes
53   Standard_EXPORT Distribution ComputeDistribution(
54     std::list<TopoDS_Shape> shapes, 
55     TopAbs_ShapeEnum entity, 
56     int intervals, 
57     Range range );
58
59 }
60
61 #endif // _GEOMUtils_ShapeStatistics_HXX_