2

次のCコードは長方形を描画します。楕円を描く方法は知っていますが、この長方形に楕円を描くにはどうすればよいですか?

#include<graphics.h>
#include<conio.h>

main()
{
   int gd = DETECT, gm;

   initgraph(&gd, &gm, "C:\\TC\\BGI");

   rectangle(100,100,200,200);

   getch();
   closegraph();
   return 0;
}
4

1 に答える 1

1

ellipse の関数を使用していると仮定するとgraphics.h、次のように実行できます。

 int left = 100;
 int right = 200;
 int top = 100;
 int bottom = 200;

 rectangle(left, top, right, bottom);

 int x = (left + right) / 2;  
 int y = (top + bottom) / 2;  
 int start = 0;
 int end = 360;
 int xrad = (right - left) / 2;
 int yrad = (bottom - top) / 2;

 ellipse(x, y, start, end, xrad, yrad);
于 2012-11-26T17:29:51.623 に答える