• Draw a Star using Quartz 2D 不及格的程序员


     1 #define PSIZE 16    // size of the pattern cell
     2  
     3 static void MyDrawStencilStar (void *info, CGContextRef myContext)
     4 {
     5     int k;
     6     double r, theta;
     7  
     8     r = 0.8 * PSIZE / 2;
     9     theta = 2 * M_PI * (2.0 / 5.0); // 144 degrees
    10  
    11     CGContextTranslateCTM (myContext, PSIZE/2, PSIZE/2);
    12  
    13     CGContextMoveToPoint(myContext, 0, r);
    14     for (k = 1; k < 5; k++) {
    15         CGContextAddLineToPoint (myContext,
    16                     r * sin(k * theta),
    17                     r * cos(k * theta));
    18     }
    19     CGContextClosePath(myContext);
    20     CGContextFillPath(myContext);
    21 }
  • 相关阅读:
    Vertica系列:性能优化
    java的几个奇怪语法
    SpringBoot系列: Redis 共享Session
    SpringBoot系列: Redis基础
    java运维: 一次线上问题排查所引发的思考
    Vertica系列:从一些细节看Vertica为什么是一个优秀的数据仓库平台
    SpringBoot系列: logging
    SpringBoot系列: 集成MyBatis
    SpringBoot系列: 使用MyBatis maven插件自动生成java代码
    SpringBoot系列: SpringBoot 启动慢的问题
  • 原文地址:https://www.cnblogs.com/ioriwellings/p/2757176.html
Copyright © 2020-2023  润新知