1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
// Copyright (c) 1998 Utrecht University (The Netherlands),
// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany),
// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg
// (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria),
// and Tel-Aviv University (Israel). All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; version 2.1 of the License.
// See the file LICENSE.LGPL distributed with CGAL.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.2-branch/Generator/include/CGAL/random_convex_set_2.h $
// $Id: random_convex_set_2.h 28567 2006-02-16 14:30:13Z lsaboret $
//
//
// Author(s) : Michael Hoffmann <hoffmann@inf.ethz.ch>
#if ! (CGAL_RANDOM_CONVEX_SET_2_H)
#define CGAL_RANDOM_CONVEX_SET_2_H 1
#include <CGAL/basic.h>
#include <CGAL/copy_n.h>
#include <vector>
#include <algorithm>
#include <numeric>
#ifdef CGAL_REP_CLASS_DEFINED
#include <CGAL/Random_convex_set_traits_2.h>
#endif
CGAL_BEGIN_NAMESPACE
template < class OutputIterator, class Point_generator, class Traits >
OutputIterator
random_convex_set_2( int n,
OutputIterator o,
const Point_generator& pg,
Traits t)
{
CGAL_precondition( n >= 3);
using std::vector;
using std::back_inserter;
using std::accumulate;
using std::transform;
using std::bind2nd;
using std::sort;
using std::partial_sum;
using std::less;
using std::max_element;
using CGAL::copy_n;
typedef typename Traits::Point_2 Point_2;
typedef typename Traits::FT FT;
typedef vector< Point_2 > Container;
typedef typename Traits::Sum Sum;
typedef typename Traits::Scale Scale;
typedef typename Traits::Angle_less Angle_less;
typedef typename Traits::Max_coordinate Max_coordinate;
// GCC 2.8 and egcs-1.0.1 require these:
// (does not accept s.l. Scale()( p, 1))
Scale scale;
Max_coordinate max_coordinate;
Sum sum;
// build random point set:
Container points;
points.reserve( n);
CGAL::copy_n( pg, n, back_inserter( points));
// compute centroid of points:
Point_2 centroid(
scale(
accumulate( points.begin(), points.end(), t.origin(), Sum()),
FT( 1) / FT( n)));
// translate s.t. centroid == origin:
transform(
points.begin(),
points.end(),
points.begin(),
bind2nd( Sum(), scale( centroid, FT( -1))));
// sort them according to their direction's angle
// w.r.t. the positive x-axis:
sort( points.begin(), points.end(), Angle_less());
// construct polygon:
partial_sum(
points.begin(), points.end(), points.begin(), Sum());
// and compute its centroid:
Point_2 new_centroid(
scale(
accumulate( points.begin(), points.end(), t.origin(), Sum()),
FT( 1) / FT( n)));
// translate s.t. centroids match:
transform(
points.begin(),
points.end(),
points.begin(),
bind2nd( Sum(), sum( centroid,
scale( new_centroid, FT( -1)))));
// compute maximal coordinate:
FT maxcoord( max_coordinate(
*max_element( points.begin(),
points.end(),
compose2_2( less< FT >(),
Max_coordinate(),
Max_coordinate()))));
// and finally scale to fit into original grid:
return transform(
points.begin(),
points.end(),
o,
bind2nd( Scale(), FT( pg.range()) / maxcoord));
} // random_convex_set_2( n, o, pg, t)
CGAL_END_NAMESPACE
#endif // ! (CGAL_RANDOM_CONVEX_SET_2_H)
// ----------------------------------------------------------------------------
// ** EOF
// ----------------------------------------------------------------------------
|