1 // Copyright (C) 2015-2016 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // File : GEOMUtils_ShapeStatisticsDlg.hxx
21 // Author : Alexander KOVALEV, OPEN CASCADE S.A.S.
23 #ifndef _GEOMUtils_ShapeStatistics_HXX_
24 #define _GEOMUtils_ShapeStatistics_HXX_
30 #include <TopoDS_Shape.hxx>
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;
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,
45 // function to get distribution data for single shape
46 Standard_EXPORT Distribution ComputeDistribution(
48 TopAbs_ShapeEnum entity,
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,
61 #endif // _GEOMUtils_ShapeStatistics_HXX_