Plotting flowerView, plotting software

Source: Internet
Author: User

Plotting flowerView, plotting software
Graph flowerViewby Wu xueying

- (void)drawRect:(CGRect)rect{    CGSize size = self.bounds.size;    CGFloat margin = 10;    CGFloat radius = rintf(MIN(size.height - margin,size.width - margin)/4);    CGFloat xOffset,yOffset;    CGFloat offset = rintf((size.height - size.width)/2);    if (offset > 0) {        xOffset = rint(margin/2);        yOffset = offset;    }else {        xOffset = -offset;        yOffset = rint(margin/2);    }    [[UIColor redColor] setFill];    UIBezierPath *path = [UIBezierPath bezierPath];    [path addArcWithCenter:CGPointMake(radius*2+xOffset, radius+yOffset) radius:radius startAngle:-M_PI endAngle:0 clockwise:YES];    [path addArcWithCenter:CGPointMake(radius*3+xOffset, radius*2+yOffset) radius:radius startAngle:-M_PI_2 endAngle:M_PI_2 clockwise:YES];    [path addArcWithCenter:CGPointMake(radius*2+xOffset, radius*3+yOffset) radius:radius startAngle:0 endAngle:M_PI clockwise:YES];    [path addArcWithCenter:CGPointMake(radius+xOffset, radius*2+yOffset) radius:radius startAngle:M_PI_2 endAngle:-M_PI_2 clockwise:YES];    [path closePath];    [path fill];}





Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.