Skip to content

Commit

Permalink
periodicSignalsExample: fix int -> float
Browse files Browse the repository at this point in the history
  • Loading branch information
arturoc committed May 4, 2012
1 parent 6a36ed1 commit 1fa84a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/math/periodicSignalsExample/src/testApp.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class testApp : public ofBaseApp{
void speedChanged(); void speedChanged();


vector<ofPolyline> trail; vector<ofPolyline> trail;
int x, prevX; float x, prevX;
vector<int> y; vector<float> y;




float preSpeed; float preSpeed;
Expand Down

0 comments on commit 1fa84a5

Please sign in to comment.