I have drawn an image in the device context using python, and i want to move it somothly/animate either vertically or horizontally? What algorithm should i use?
Where can i get info for this kind of tasks in python?
|
|
|||||
|
|
|
To smoothly move object between starting coordinate
Now you simply need to add
It is unlikely it will ever be true. Note the above method gives you constant velocity, straight line movement. You may wish to instead use some sort a slightly more complex formula to give the object the appearance of accelerating, maintaining cruise speed, then decelerating. The following formulae may then be useful:
This is merely Euler's method, and should suffice for animation purposes. |
||
|
|
|
|
Once an object is drawn in a device context it stays there. If you want to move it you need to redraw it. You can keep a background that's fixed and only redraw the movable elements each time they move. Basically that's how it's done. To move an object smoothly over a line you have to do something like this (I don't have a program ready, so can only give you an idea):
That would be the algorithm. I suggest that you also take a look to PyGame. Maybe you can use that and it also has some tutorials. |
|||
|