码迷,mamicode.com
首页 > 其他好文 > 详细

CGContextAddArcToPoint和CGContextAddArc

时间:2014-08-22 14:15:58      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:blog   http   color   strong   ar   art   div   代码   log   

比较难的是CGContextAddArcToPoint  

代码如下:

 

[plain] view plaincopy
 
  1. CGContextRef context=UIGraphicsGetCurrentContext();  
  2. CGContextSetRGBStrokeColor(context,1,0,0,1);  
  3. CGContextMoveToPoint(context,150,50);  
  4. CGContextAddLineToPoint(context,100,80);  
  5. CGContextAddLineToPoint(context,130,150);  
  6.   
  7. CGContextMoveToPoint(context,150,50);//圆弧的起始点  
  8. CGContextAddArcToPoint(context,100,80,130,150,50);  
  9. CGContextStrokePath(context);  

bubuko.com,布布扣

 

 

CGContextMoveToPoint(context,150,50);//圆弧的起始点

CGContextAddArcToPoint(context,100,80,130,150,50);

是说从(150,50)到(100,80)画一条线,然后再从(100,80)到(130,150)画一条线,从这两条线(无限延伸的) 和半径50可以确定一条弧,

 而

CGContextAddArc(context, 100, 100, 30, 0, M_PI, 1);

比较简单了,(100,100)为圆心的坐标,30为半径,(0,M_PI)为起始角度和结束角度,1为顺时针,0 为逆时针

是说从(150,50)到(100,80)画一条线,然后再从(100,80)到(130,150)画一条线,从这两条线(无限延伸的) 和半径50可以确定一条弧

 

CGContextAddArcToPoint和CGContextAddArc

标签:blog   http   color   strong   ar   art   div   代码   log   

原文地址:http://www.cnblogs.com/xitang/p/3929180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!