【C++图形化编程】EasyX函数~图形绘制相关函数(2)
(1)ellipse 椭圆
void ellipse( int left, int top, int right, int bottom);
参数
left
椭圆外切矩形的左上角 x 坐标。
top
椭圆外切矩形的左上角 y 坐标。
right
椭圆外切矩形的右下角 x 坐标。
bottom
椭圆外切矩形的右下角 y 坐标。
(2)pie扇形
void fillpie( int left, int top, int right, int bottom, double stangle, double endangle);
left
扇形所在椭圆的外切矩形的左上角 x 坐标。
top
扇形所在椭圆的外切矩形的左上角 y 坐标。
right
扇形所在椭圆的外切矩形的右下角 x 坐标。
bottom
扇形所在椭圆的外切矩形的右下角 y 坐标。
stangle
扇形的起始角的弧度。
endangle
扇形的终止角的弧度。
(3)ctangle 矩形
void fillrectangle( int left, int top, int right, int bottom);
参数
left
矩形左部 x 坐标。
top
矩形顶部 y 坐标。
right
矩形右部 x 坐标。
bottom
矩形底部 y 坐标。
(4)roundrect 圆角矩形
void fillroundrect( int left, int top, int right, int bottom, int ellipsewidth, int ellipseheight);
参数
left
圆角矩形左部 x 坐标。
top
圆角矩形顶部 y 坐标。
right
圆角矩形右部 x 坐标。
bottom
圆角矩形底部 y 坐标。
ellipsewidth
构成圆角矩形的圆角的椭圆的宽度。
ellipseheight
构成圆角矩形的圆角的椭圆的高度。
(5)circle 圆
void circle( int x, int y, int radius);
参数:
x
圆心 x 坐标。
y
圆心 y 坐标。
radius
圆的半径。
(6)line 线
void line( int x1, int y1, int x2, int y2);
参数:
x1
直线的起始点的 x 坐标。
y1
直线的起始点的 y 坐标。
x2
直线的终止点的 x 坐标。
y2
直线的终止点的 y 坐标。
(adsbygoogle = window.adsbygoogle || []).push({});