有谁知道android中的UIBezierPath IOS类似代码

时间:2019-05-24 06:30:21

标签: android ios

我想在android中使用相同/等效的方法来完成要求,那么有人可以帮我吗? 就像我想要android中的相同代码一样。

    let path = UIBezierPath()
    // draw x-axis
    x.axis.color.setStroke()
    let y0 = height - self.y.scale(0) - y.axis.inset
    path.move(to: CGPoint(x: x.axis.inset, y: y0))
    path.addLine(to: CGPoint(x: width - x.axis.inset, y: y0))
    path.stroke()
    // draw y-axis
    y.axis.color.setStroke()
    path.move(to: CGPoint(x: x.axis.inset, y: height - y.axis.inset))
    path.addLine(to: CGPoint(x: x.axis.inset, y: y.axis.inset))
    path.stroke()

0 个答案:

没有答案