Version: 9.16.0
GEOMUtils_ShapeStatistics.hxx
Go to the documentation of this file.
1// Copyright (C) 2015-2026 CEA, EDF, 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
32namespace 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_
Definition: GEOMUtils.hxx:56
std::map< int, double > ComputeMeasures(std::list< TopoDS_Shape > shapes, TopAbs_ShapeEnum entity, Range &range)
Definition: GEOMUtils_ShapeStatistics.cxx:37
std::vector< Range > Distribution
Definition: GEOMUtils_ShapeStatistics.hxx:37
Distribution ComputeDistribution(TopoDS_Shape shape, TopAbs_ShapeEnum entity, int intervals, Range range)
Definition: GEOMUtils_ShapeStatistics.cxx:95
Definition: GEOMUtils_ShapeStatistics.hxx:35
long count
Definition: GEOMUtils_ShapeStatistics.hxx:35