MFC画正圆

用CDC画椭圆实现,圆是特殊的椭圆而已。

[cpp]  view plain copy print ?
  1. void DrawCircle(CDC* pDC,CRect rect)  
  2. {  
  3.   
  4.    int rx,ry;  
  5.   
  6. //找出大一些的直径  
  7.    if (rect.right < rect.left)  
  8.   {  
  9.      rx= rect.left;  
  10.      rect.left = rect.right;  
  11.      rect.right = rx;  
  12.   }  
  13.   if (rect.bottom < rect.top)  
  14.   {  
  15.      ry= rect.top;  
  16.      rect.top = rect.bottom;  
  17.      rect.bottom = ry;  
  18.   }  
  19.   
  20. //算出两直径的差  
  21.   rx= rect.right - rect.left;  
  22.   ry= rect.bottom - rect.top;  
  23.   
  24. //根据直径差值,移动椭圆的边界,圆的半径为min(x,y)  
  25.   if (rx > ry)  
  26.   {  
  27.      rect.left += (rx-ry) / 2;  
  28.      rect.right = rect.left + ry;  
  29.   }  
  30.   else  
  31.   {  
  32.      rect.top += (ry-rx) / 2;  
  33.      rect.bottom = rect.top + rx;  
  34.   }  
  35.   pDC->Ellipse(rect);  
  36. }  


 还有个简单点的方法,这样更实用。就是算出圆的半径radius,矩形坐上角坐标(x,y),则画圆的语句为:

[cpp]  view plain copy print ?
  1. pDC->(x-radius,y-radius,x+radius,y+radius)  

转载出处:http://blog.csdn.net/beyondhaven/article/details/5870007

你可能感兴趣的:(windows,mfc,画正圆)