Flow Visualisation
FieldCreator.h
Go to the documentation of this file.
1 //
2 // FieldCreator.h
3 // flowviz
4 //
5 // Created by Johann Götz on 09.06.15.
6 // Copyright (c) 2015 Johann Götz. All rights reserved.
7 //
8 
9 #ifndef __flowviz__FieldCreator__
10 #define __flowviz__FieldCreator__
11 
12 #include <stdio.h>
13 #include "TimeField.h"
14 
15 namespace flowiz {
17  {
18 
19  public:
20 
26  static void CreateRandomField(TimeField *timeField);
27  };
28 }
29 
30 #endif /* defined(__flowviz__FieldCreator__) */
Represents a timebased vector filed The vector fields are stored as.
Definition: TimeField.h:25
static void CreateRandomField(TimeField *timeField)
creates a random vector The resulting vector field should have a general flow direction and not be co...
Definition: FieldCreator.cpp:18
Definition: DistanceMap.h:16
Definition: FieldCreator.h:16