Posts

Showing posts with the label how to draw a cartoon helicopter

How To Draw Helicopter Animation in C Or C++ (Computer Graphics)

Image
                                                                                                PROJECT BY (SIMPLIFY LEARN PROGRAMMING)  ON HELICOPTER ANIMATION SOURCE CODE: #include<conio.h> #include<graphics.h> #include<dos.h> //Animation void Helicopter(); void Go(); void main() {   clrscr();   int gd=DETECT, gm;   initgraph(&gd, &gm,"C://TC//BGI");   Go();   Helicopter();   getch();   closegraph(); } //This Go is only to make it stand for some time  void Go(){ //...........     For Background   .........  for(int l=0;l<50;l++){   int b=0;                                      //Speed of y-axis of helicoptor   int c=0;                                      //Speed of x-axis of helicoptor  // Helicopter   line(216+c,235-b,75+c,235-b);   line(115+c,247-b,120+c,240-b);           //UpperBackSmallInclinedLine   line(166+c,247-b,161+c,240-b);            //UpperFrontSmallInclinedLine   line(120+c,240-b,161+c,240-b);                //UpperHorizontallLIne