summaryrefslogtreecommitdiff
path: root/rotord/src/graph.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-11-04 14:46:10 +0000
committerTim Redfern <tim@eclectronics.org>2013-11-04 14:46:10 +0000
commitd480bf3349d2411d20ff0816df5ac7e55ed511f9 (patch)
tree5e645f3dfd2192789296b712f130dabbdeec3806 /rotord/src/graph.h
parent5d0dbb41b66792662170ce86334bf4cba87ed700 (diff)
random seed not working
Diffstat (limited to 'rotord/src/graph.h')
-rw-r--r--rotord/src/graph.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/rotord/src/graph.h b/rotord/src/graph.h
index ddf2471..4dcd254 100644
--- a/rotord/src/graph.h
+++ b/rotord/src/graph.h
@@ -25,7 +25,7 @@ copy nodes `
namespace Rotor {
class Graph{
public:
- Graph(){duration=20.0f;loaded = false;outW=640;outH=360;audio_thumb=new Audio_thumbnailer();use_fragmentation=false;};
+ Graph(){duration=20.0f;loaded = false;outW=640;outH=360;audio_thumb=new Audio_thumbnailer();use_fragmentation=false;analysis_seed=0;};
Graph(const string& _uid,const string& _desc){
init(_uid,_desc);
audio_loaded=false;
@@ -92,6 +92,7 @@ namespace Rotor {
private:
int outW,outH;
bool use_fragmentation;
+ int analysis_seed;
};
class Thumbnailer{