Falling Objects in a GUI
Show older comments
My current GUI has a paddle moving back and forth on the X-aixis, its controlled my an accelerometer. I'm was wondering how would you get a number of falling object starting from the top of the window and fall at random speeds? And the number of falling objects increase with time?
Answers (2)
Image Analyst
on 8 Mar 2014
0 votes
MATLAB offers a rand() function to generate random numbers, and various timing functions like tic and toc, and clock() or now(). It should be easy for you to do what you ask if you just use those built in functions.
Walter Roberson
on 8 Mar 2014
0 votes
image() them into place. Change the image object's xdata and ydata properties to move them.
If you need them to rotate as well, the easiest way would probably be to use a hgtransform to hold the image object.
Categories
Find more on Object Containers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!