Ask your own question, for FREE!
Computer Science 13 Online
OpenStudy (anonymous):

can any one tell me the code of some simle animation in c++

OpenStudy (anonymous):

You can't just do animation in C++. C++ is a general-purpose language and you're going to need access to graphics hardware (either direct, or using OS-provided libraries) to draw anything. Then there's the question of actually animating stuff, so changing your image with time.

OpenStudy (anonymous):

using pure C++, you can't. Basically, you need some graphics API for the platform you want to work upon. For Windows, you can use DirectX API, or for cross-platform development, you can use OpenGL. These libraries provide a lot of function for rendering and manipulating graphics. You should use them for animation.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!