美文网首页
Core Graphics线条和连接样式

Core Graphics线条和连接样式

作者: loongod | 来源:发表于2020-11-18 16:23 被阅读0次
样式
/* Line join styles. */
public enum CGLineJoin : Int32 {
    // 斜接
    case miter = 0
    // 圆接
    case round = 1
    // 方接
    case bevel = 2
}

/* Line cap styles. */
public enum CGLineCap : Int32 {
     // 方形
    case butt = 0
    // 圆形
    case round = 1
     // 同 butt 方形
    case square = 2
}

相关文章

网友评论

      本文标题:Core Graphics线条和连接样式

      本文链接:https://www.haomeiwen.com/subject/hmmciktx.html