OpenWalnut  1.5.0dev
WDataCreatorPointsRandom.cpp
1 //---------------------------------------------------------------------------
2 //
3 // Project: OpenWalnut ( http://www.openwalnut.org )
4 //
5 // Copyright 2009 OpenWalnut Community, BSV@Uni-Leipzig and CNCF@MPI-CBS
6 // For more information see http://www.openwalnut.org/copying
7 //
8 // This file is part of OpenWalnut.
9 //
10 // OpenWalnut is free software: you can redistribute it and/or modify
11 // it under the terms of the GNU Lesser General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // OpenWalnut is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU Lesser General Public License for more details.
19 //
20 // You should have received a copy of the GNU Lesser General Public License
21 // along with OpenWalnut. If not, see <http://www.gnu.org/licenses/>.
22 //
23 //---------------------------------------------------------------------------
24 
25 #include <random>
26 
27 #include "WDataCreatorPointsRandom.h"
28 
30  WObjectNDIP< WDataSetPointsCreatorInterface >( "Random", "Create random points." )
31 {
32 }
33 
35 {
36  // cleanup
37 }
38 
40  WProgress::SPtr progress,
41  const WColor& color,
42  size_t numPoints,
43  const WPosition& origin,
44  const WPosition& size,
47 {
48  std::uniform_real_distribution< double > unif( -0.5, 0.5 );
49  std::default_random_engine re;
50  re.seed( seed );
51 
52 
53  for( size_t pidx = 0; pidx < numPoints; ++pidx )
54  {
55  double x = unif( re ) * size.x();
56  double y = unif( re ) * size.y();
57  double z = unif( re ) * size.z();
58  vertices->push_back( origin.x() + x );
59  vertices->push_back( origin.y() + y );
60  vertices->push_back( origin.z() + z );
61 
62  colors->push_back( color.x() );
63  colors->push_back( color.y() );
64  colors->push_back( color.z() );
65 
66  ++( *progress );
67  }
68 }
WDataCreatorPointsRandom()
Default constructor.
virtual void operator()(int seed, WProgress::SPtr progress, const WColor &color, size_t numPoints, const WPosition &origin, const WPosition &size, WDataSetPoints::VertexArray vertices, WDataSetPoints::ColorArray colors)
Create the dataset.
virtual ~WDataCreatorPointsRandom()
Destructor.
Define the interface which is injected into an WObjectNDIP.
std::shared_ptr< std::vector< float > > ColorArray
Colors for each vertex in VertexArray.
std::shared_ptr< std::vector< float > > VertexArray
List of vertex coordinates in term of components of vertices.
This is a base class for everything which has a Name,Description,Icon and Properties (=NDIP).
Definition: WObjectNDIP.h:42
This only is a 3d double vector.
std::shared_ptr< WProgress > SPtr
Shared pointer on a WProgress.
Definition: WProgress.h:48