swift - 仅在边缘上描边 CGPath

标签 swift geometry cgaffinetransform cgpath

我正在使用 Swift 制作游戏,并且我有一个任意角度的 CGPath。现在我们假设它总是一条直线。

line

我想要创建的是这样的:

line2

我已经尝试过非常简单的方法,即以黑色的粗线宽度抚摸,复制路径,然后以背景颜色的稍细的线宽度再次抚摸它。这给出了正确的外观,但最终我需要中间是透明的。

我认为这可以通过使用“父”路径(中间)的转换来实现,但我不确定如何做到这一点。沿单个轴的简单平移是行不通的,因为路径是有角度的。我想我需要使用其端点计算路径的坡度,并使用一些数学来找到距父路径一定垂直距离的点。但我不太确定该怎么做。有什么提示,或者还有其他方法吗?

编辑: 我确实尝试使用 CGPathCreateCopyByStrokingPath,但是当然,这会描边整个路径,我实际上只需要创建两个边缘 - 而不是末端。我想要这样的东西:

path3

最佳答案

使用CGPathCreateCopyByStrokingPath创建一条新路径,以您指定的偏移量(偏移量是lineWidth的一半)勾画出当前路径的轮廓。然后抚摸那条新路径。

更新

这是一个函数,它接受一条线段(作为一对点)和一个偏移量,并返回一条与原始线段平行且有偏移的新线段。

func lineSegment(segment: (CGPoint, CGPoint), offsetBy offset: CGFloat) -> (CGPoint, CGPoint) {
    let p0 = segment.0
    let p1 = segment.1

    // Compute (dx, dy) as a vector in the direction from p0 to p1, with length `offset`.
    var dx = p1.x - p0.x
    var dy = p1.y - p0.y
    let length = hypot(dx, dy)
    dx *= offset / length
    dy *= offset / length

    // Rotate the vector one quarter turn in the direction from the x axis to the y axis, so it's perpendicular to the line segment from p0 to p1.
    (dx, dy) = (-dy, dx)

    let p0Out = CGPointMake(p0.x + dx, p0.y + dy)
    let p1Out = CGPointMake(p1.x + dx, p1.y + dy)
    return (p0Out, p1Out)
}

这是一个使用它的 Playground 示例:

func stroke(segment: (CGPoint, CGPoint), lineWidth: CGFloat, color: UIColor) {
    let path = UIBezierPath()
    path.moveToPoint(segment.0)
    path.addLineToPoint(segment.1)
    path.lineWidth = lineWidth
    color.setStroke()
    path.stroke()
}

let mainSegment = (CGPointMake(20, 10), CGPointMake(50, 30))
UIGraphicsBeginImageContextWithOptions(CGSizeMake(80, 60), true, 2)
UIColor.whiteColor().setFill(); UIRectFill(.infinite)
stroke(mainSegment, lineWidth: 1, color: .blackColor())
stroke(lineSegment(mainSegment, offsetBy: 10), lineWidth: 2, color: .redColor())
stroke(lineSegment(mainSegment, offsetBy: -10), lineWidth: 2, color: .blueColor())
let image = UIGraphicsGetImageFromCurrentImageContext()
XCPlaygroundPage.currentPage.captureValue(image, withIdentifier: "image")

结果:

parallel line segments

关于swift - 仅在边缘上描边 CGPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37222533/

相关文章:

ios - 应用程序终止时的位置更新

android - 如何使用 DashPathEffect 绘制等距破折号

c# - C# 中图像上的水印?

ios - 在 iOS 中将 3 条线动画化为 uibutton 的箭头

ios - 在 CGAffineTransformMakeScale 之后更正模糊文本

swift - AVCaptureVideoDataOutput captureOutput 未被调用

ios - 将 CLLocationCoordinate2D 转换为可以存储的字符串

Swift 设置一个全局变量

haskell - 使用坐标计算随机三角形的边界框

ios - 用于 Tinder 风格滑动屏幕的 Swift iOS 动画