is it possible to position letter x in center of console, drop at 100pixels/second, and raise 50pixels on click?

This is essentially the rudimentary version of the motion in jetpack joyride but instead of the joyrider falling at 100pixels per second, it would be the letter "x" falling at 100pixels per second from the exact middle of the console and a click event would cause it to rise at 50 pixels per second. I am really new at this so if this isn't possible in c++ please let me know. Thanks.

EDIT: I am using sublime text to write my code, and the MinGW compiler.

Upvotes: 0

Views: 42

Answers (1)

user149341
user149341

Reputation:

No. Characters on the console can only appear on the character grid; you can't move them around to pixel-exact coordinates.

For what it's worth, this would be trivial to do in a web browser.

Upvotes: 2

Related Questions