次の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;
}
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);