Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a problem drawing an arc with CoreGraphics for iOS. There is this article that I was reading and implementing the code from raywenderlich.com.

http://www.raywenderlich.com/2106/core-graphics-101-arcs-and-paths

I understand the majority of what is going on in the code snippet. I mostly understand the radians(180) + angle, and radians(360) - angle thing.

CGMutablePathRef createArcPathFromBottomOfRect(CGRect rect, CGFloat arcHeight) {

    CGRect arcRect = CGRectMake(rect.origin.x, 
        rect.origin.y + rect.size.height - arcHeight, 
        rect.size.width, arcHeight);

    CGFloat arcRadius = (arcRect.size.height/2) + 
        (pow(arcRect.size.width, 2) / (8*arcRect.size.height));
    CGPoint arcCenter = CGPointMake(arcRect.origin.x + arcRect.size.width/2, 
        arcRect.origin.y + arcRadius);

    CGFloat angle = acos(arcRect.size.width / (2*arcRadius));
    CGFloat startAngle = radians(180) + angle;
    CGFloat endAngle = radians(360) - angle;

    CGMutablePathRef path = CGPathCreateMutable();
    CGPathAddArc(path, NULL, arcCenter.x, arcCenter.y, arcRadius, 
       startAngle, endAngle, 0);
    //Took these lines out, just want to draw the arc for now.
    //CGPathAddLineToPoint(path, NULL, CGRectGetMaxX(rect), CGRectGetMinY(rect));
    //CGPathAddLineToPoint(path, NULL, CGRectGetMinX(rect), CGRectGetMinY(rect));
    //CGPathAddLineToPoint(path, NULL, CGRectGetMinX(rect), CGRectGetMaxY(rect));

    return path;     
}

and then the drawRect code in the custom view.

CGContextRef context = UIGrahicsGetCurrentContext();
CGContextSaveGState(context);
CGMutablePathRef arcPath = createArcPathFromBottomOfRect(insetFrame, 4.0);
CGContextAddPath(context, arcPath);
CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);
CGContextStrokePath(context);
CGContextRestoreGState(context);

CFRelease(arcPath);

This code works great but I've been experimenting and wanted to draw an arc vertically, not for any real purpose, but to better my understanding of CoreGraphics and improve my maths a little bit.

Ok, so I figured that if I want to draw an arc vertically, the rect's width would be equal to the arcHeight and where the previous arcRect make was setting the x and y coords, I'd need to reverse them.

I'm still struggling a bit with the

CGFloat startAngle = radians(180) + angle;
CGFloat endAngle = radians(360) - angle;

I realize that we need the angle for both sides of the arc. If drawing an arc vertically, I'm thinking the 180 and 30 would need to change? I'm a correct, and if so, by what values should they be replaced with?

Here is the need createArcPathFromBottomOfRect code:

CGMutablePathRef createArcPathFromBottom(CGRect rect, CGFloat arcHeight) {
    CGRect arcRect = CGRectMake(rect.origin.x + rect.size.width - arcHeight,
                                rect.origin.y,
                                arcHeight,
                                rect.size.height);

    // d = (a * b) / c
    CGFloat a, b = rect.size.height / 2;
    CGFloat c = arcHeight;
    CGFloat d = (a * b) / c;
    CGFloat arcRadius = (c + d) / 2;
    CGPoint arcCenter = CGPointMake(arcRect.origin.x + arcRadius, arcRect.origin.y + arcRect.size.height / 2);

    // i'm thinking it should actually be atan not acos since we only know
    // the opposite and adjacent sides.
    CGFloat angle = atan( (a + b) / ( 2 * arcRadius ) );
    CGFloat startAngle = radians(180) + angle;
    CGFloat endAngle = radians(360) - angle;

    CGMutablePathRef path = CGPathCreateMutable();
    CGPathAddArc(path, NULL, arcCenter.x, arcCenter.y, arcRadius, startAngle, endAngle, 0);

    return path;
}

Unfortunately, my arc is not being drawn and I'm not sure what is wrong with my new createArcPathFromBottomOfRect code.

Anyone see anything that I don't?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.