Changeset c8d2e7
- Timestamp:
- Aug 20, 2014, 1:06:16 PM (11 years ago)
- Children:
- ce0ca4
- Parents:
- c1413b
- git-author:
- Frederik Heber <heber@…> (07/18/14 16:06:44)
- git-committer:
- Frederik Heber <heber@…> (08/20/14 13:06:16)
- Location:
- src/Fragmentation/Exporters
- Files:
-
- 2 edited
-
SphericalPointDistribution.cpp (modified) (3 diffs)
-
SphericalPointDistribution.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Exporters/SphericalPointDistribution.cpp
rc1413b rc8d2e7 578 578 * \param _polygon here, we have indices 0,1,2,... 579 579 * \param _newpolygon and here we need to find the correct indices 580 * \return list of indices: first in \a _polygon goes to first index for \a _newpolygon580 * \return control structure containing the matching and more 581 581 */ 582 SphericalPointDistribution::IndexList_t SphericalPointDistribution::findBestMatching( 582 SphericalPointDistribution::MatchingControlStructure 583 SphericalPointDistribution::findBestMatching( 583 584 const WeightedPolygon_t &_polygon 584 585 ) … … 622 623 } 623 624 624 // combine multiple points and create simple IndexList from IndexTupleList 625 const SphericalPointDistribution::IndexList_t IndexList = 626 joinPoints(points, MCS.newpoints, MCS.bestmatching); 627 628 return IndexList; 625 return MCS; 629 626 } 630 627 … … 893 890 894 891 if (_N > 0) { 895 IndexList_t bestmatching = findBestMatching(_polygon); 892 // combine multiple points and create simple IndexList from IndexTupleList 893 MatchingControlStructure MCS = findBestMatching(_polygon); 894 IndexList_t bestmatching = joinPoints(points, MCS.newpoints, MCS.bestmatching); 896 895 LOG(2, "INFO: Best matching is " << bestmatching); 897 896 -
src/Fragmentation/Exporters/SphericalPointDistribution.hpp
rc1413b rc8d2e7 181 181 ); 182 182 183 IndexList_tfindBestMatching(const WeightedPolygon_t &_polygon);183 MatchingControlStructure findBestMatching(const WeightedPolygon_t &_polygon); 184 184 185 185 static IndexList_t joinPoints(
Note:
See TracChangeset
for help on using the changeset viewer.
