|
Exercises
All exercises should be 400x400 pixels.
MV02: Create a visualisation of the time using the second(), minute() and hour() methods. Use some of the ways of generating motion that you've just learned.
Help: To get values in the range of 0..1, do the following:
sec=(float)seconds()/60.0f;
min=(float)minute()/60.0f;
hr=(float)hour()/24.0f; |