2014-01-06 02:40:24 +00:00
|
|
|
//
|
|
|
|
|
// GUI.h
|
|
|
|
|
// emptyExample
|
|
|
|
|
//
|
|
|
|
|
// Created by James Alliban on 25/06/2013.
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "ofMain.h"
|
|
|
|
|
#include "BarGraph.h"
|
|
|
|
|
|
|
|
|
|
class testApp;
|
|
|
|
|
|
|
|
|
|
class Scene
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void setup();
|
|
|
|
|
void update();
|
|
|
|
|
void draw();
|
2014-01-07 17:11:46 +00:00
|
|
|
void drawVideo();
|
|
|
|
|
void drawHUD();
|
2014-01-06 02:40:24 +00:00
|
|
|
|
|
|
|
|
BarGraph barGraph;
|
2014-01-07 00:48:58 +00:00
|
|
|
ofShader rgbShader;
|
|
|
|
|
ofImage bgImg;
|
2014-01-07 17:11:46 +00:00
|
|
|
|
2014-01-07 00:48:58 +00:00
|
|
|
float brightness, contrast, saturation, red, green, blue, alpha;
|
2014-01-06 02:40:24 +00:00
|
|
|
|
2014-01-07 17:11:46 +00:00
|
|
|
float hudColour[4];
|
|
|
|
|
float circlePointSize;
|
|
|
|
|
float radiusW;
|
|
|
|
|
float radiusH;
|
2014-01-06 02:40:24 +00:00
|
|
|
};
|