Mercurial > hg > screen-ui
view Voice.h @ 2:8c4903923021
added voiceIdOffset command param
author | Henrik Ekeus <hekeus@eecs.qmul.ac.uk> |
---|---|
date | Tue, 24 Jan 2012 14:41:27 +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; };