Skip to content

Instantly share code, notes, and snippets.

@niczyja
Last active May 25, 2021 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niczyja/a50ea5a0960ba95d8c676e79fb8cc53d to your computer and use it in GitHub Desktop.
Save niczyja/a50ea5a0960ba95d8c676e79fb8cc53d to your computer and use it in GitHub Desktop.
Drawing shapes (arrow, point) using CGMutablePath. Based on: https://gist.github.com/mwermuth/07825df27ea28f5fc89a
extension CGMutablePath {
func addArrow(to point: CGPoint, tailWidth: CGFloat = 4.0, headWidth: CGFloat = 10.0, headLength: CGFloat = 14.0) {
let length = hypot(point.x - currentPoint.x, point.y - currentPoint.y)
let tailLength = length - headLength
let points: [CGPoint] = [
CGPoint(x: 0.0, y: tailWidth / 2),
CGPoint(x: tailLength, y: tailWidth / 2),
CGPoint(x: tailLength, y: headWidth / 2),
CGPoint(x: length, y: 0.0),
CGPoint(x: tailLength, y: -headWidth / 2),
CGPoint(x: tailLength, y: -tailWidth / 2),
CGPoint(x: 0.0, y: -tailWidth / 2)
]
let cosine: CGFloat = (point.x - currentPoint.x) / length
let sine: CGFloat = (point.y - currentPoint.y) / length
let transform = CGAffineTransform(a: cosine, b: sine, c: -sine, d: cosine, tx: currentPoint.x, ty: currentPoint.y)
addLines(between: points, transform: transform)
}
func markPoint(at point: CGPoint, crossSize: CGFloat = 9.0) {
move(to: CGPoint(x: point.x - crossSize / 2, y: point.y - crossSize / 2))
addLine(to: CGPoint(x: point.x + crossSize / 2, y: point.y + crossSize / 2))
move(to: CGPoint(x: point.x - crossSize / 2, y: point.y + crossSize / 2))
addLine(to: CGPoint(x: point.x + crossSize / 2, y: point.y - crossSize / 2))
}
}
@niczyja
Copy link
Author

niczyja commented May 4, 2021

Usage:

let path = CGMutablePath()
path.move(to: start)
path.addArrow(to: end)

@niczyja
Copy link
Author

niczyja commented May 25, 2021

Point:

let path = CGMutablePath()
path.move(to: location)
path.markPoint(at: location)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment