view Voice.h @ 3:3314e795adea

added /marker on space bar
author Henrik Ekeus <hekeus@eecs.qmul.ac.uk>
date Wed, 25 Jan 2012 15:20:40 +0000
parents 2db9be889344
children
line wrap: on
line source
/*
 *  Voice.h
 *  MelodyTriangle
 *
 *  Created by Henrik Ekeus on 12/01/2012.
 *  Copyright 2012 Queen Mary University of London. All rights reserved.
 *
 */
#include "ofMain.h"
class Voice  {
public:
	
	void draw();
	Voice(int id, int x, int y);
	Voice();
	bool isInVoice(int x, int y);
	
	int id;
	int posx,posy;
	bool isActive;
	bool inTriangle;
	int radius;
	int octave;
	bool highlight;
	
	
};