Click here to Skip to main content
15,891,777 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am beginner using graphics.h and i don't know how to do those thinks in MinGW :
1.How to make an animation to move a square in the right side ?
2.How to spin a circle ?

Thanks.
Posted

1 solution

AFAIK you cannot use BGI with MinGW. BGI is the graphics library provided by Turbo C/C++ (are you using WinBGIm[^]?).

[Update]
Move the square to the right:
  1. Erase the square at current position {x,y}.
  2. Update position {x,y}->{x+dx, y}.
  3. Delay for some time (e.g. calling Sleep() function).
  4. Repeat from point 1.


You may use the rectangle[^] function to draw the square.


BTW What do you mean with "spin a circle"?
[/Update]
 
Share this answer
 
v3
Comments
rodudeasdf 4-May-12 9:30am    
Yes I am using WinBGIm, sorry for the confusion.
rodudeasdf 4-May-12 10:00am    
My bad again LOL, i wanted to type "a square".

Thanks for answer, but can you please make for example a source code because i don't really understand.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900