运动量最大的狗排名:VC++中画弧arc函数的8个参数所代表的含义

来源:百度文库 编辑:神马品牌网 时间:2024/04/29 20:09:14
VC中画弧arc函数的8个参数所代表的含义如:
pDC->Arc(int x1,int y1,int x2,int y2,int x3,int y3,int x4,int y4)
其中x1,y1,x2,y2,x3,y3,x4,y4 分别代表了什么意思?
谢谢了,

这是MSDN中的自己慢慢看,很明白了!
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
);