OpenWalnut  1.5.0dev
WDataCreatorFiberRandom.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 "WDataCreatorFiberRandom.h"
28 
30  WObjectNDIP< WDataSetFibersCreatorInterface >( "Random", "Create random fibers." )
31 {
32 }
33 
35 {
36  // cleanup
37 }
38 
40  WProgress::SPtr progress,
41  const WColor& color,
42  size_t numFibers,
43  size_t numVertsPerFiber,
44  const WPosition& origin,
45  const WPosition& size,
49  WDataSetFibers::IndexArray fibIdxVertexMap,
51 {
52  std::uniform_real_distribution< double > unif( 0.0, 1.0 );
53  std::default_random_engine re;
54  re.seed( seed );
55 
56  for( size_t fidx = 0; fidx < numFibers; ++fidx )
57  {
58  double x1 = unif( re ) * size.x();
59  double y1 = unif( re ) * size.y();
60  double z1 = unif( re ) * size.z();
61  double x2 = unif( re ) * size.x();
62  double y2 = unif( re ) * size.y();
63  double z2 = unif( re ) * size.z();
64 
65  WVector3d v1( x1, y1, z1 );
66  WVector3d v2( x2, y2, z2 );
67 
68  WVector3d ray = ( v2 - v1 ) / numVertsPerFiber; // Build new ray between start and end so that all vertices can fit in between
69 
70  fibIdx->push_back( fidx * numVertsPerFiber );
71  lengths->push_back( numVertsPerFiber );
72 
73  for( size_t vidx = 0; vidx < numVertsPerFiber; ++vidx )
74  {
75  WVector3d vec = ray * vidx;
76 
77  vertices->push_back( origin.x() + v1.x() + vec.x() );
78  vertices->push_back( origin.y() + v1.y() + vec.y() );
79  vertices->push_back( origin.z() + v1.z() + vec.z() );
80 
81  colors->push_back( color.x() );
82  colors->push_back( color.y() );
83  colors->push_back( color.z() );
84  fibIdxVertexMap->push_back( fidx );
85  }
86 
87  ++( *progress );
88  }
89 }
virtual ~WDataCreatorFiberRandom()
Destructor.
WDataCreatorFiberRandom()
Default constructor.
virtual void operator()(int seed, WProgress::SPtr progress, const WColor &color, size_t numFibers, size_t numVertsPerFiber, const WPosition &origin, const WPosition &size, WDataSetFibers::VertexArray vertices, WDataSetFibers::IndexArray fibIdx, WDataSetFibers::LengthArray lengths, WDataSetFibers::IndexArray fibIdxVertexMap, WDataSetFibers::ColorArray colors)
Create the dataset.
Define the interface which is injected into an WObjectNDIP.
std::shared_ptr< std::vector< size_t > > IndexArray
Index list indexing fibers in VertexArray in terms of vertex numbers.
std::shared_ptr< std::vector< float > > ColorArray
Colors for each vertex in VertexArray.
std::shared_ptr< std::vector< size_t > > LengthArray
Lengths of fibers in terms of vertices.
std::shared_ptr< std::vector< float > > VertexArray
List of vertex coordinates in term of components of vertices.
ValueT & z()
Access z element of vector.
ValueT & y()
Access y element of vector.
ValueT & x()
Access x element of vector.
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