作业帮 > 综合 > 作业

C语言,arc()画圆弧的函数几个参数?是不是5个?为什么vc6上说参数个数不对?貌似要6个?

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/05/10 18:00:40
C语言,arc()画圆弧的函数几个参数?是不是5个?为什么vc6上说参数个数不对?貌似要6个?
BOOL Arc(
HDC hdc,// handle to device context
int nLeftRect,// x-coord of bounding rectangle's upper-left corner
int nTopRect,// y-coord of bounding rectangle's upper-left corner
int nRightRect,// x-coord of bounding rectangle's lower-right corner
int nBottomRect,// y-coord of bounding rectangle's lower-right corner
int nXStartArc,// first radial ending point
int nYStartArc,// first radial ending point
int nXEndArc,// second radial ending point
int nYEndArc // second radial ending point
);
设备句柄+4个点的坐标 一共9个参数