Skip to content

Instantly share code, notes, and snippets.

@Dywane
Last active July 27, 2018 08:12
Show Gist options
  • Save Dywane/2e0e90225da4b29a86f33be3be93b3ce to your computer and use it in GitHub Desktop.
Save Dywane/2e0e90225da4b29a86f33be3be93b3ce to your computer and use it in GitHub Desktop.
Wave Path
let originY = (label.bounds.size.height + label.font.lineHeight) / 2
let path = UIBezierPath()
path.move(to: CGPoint(x: 0, y: _waveHeight!))
var yPosition = 0.0
for xPosition in 0..<Int(label.bounds.size.width) {
yPosition = _zoom! * sin(Double(xPosition) / 180.0 * Double.pi - 4 * _translate! / Double.pi) * 5 + _waveHeight!
path.addLine(to: CGPoint(x: Double(xPosition), y: yPosition))
}
path.addLine(to: CGPoint(x: label.bounds.size.width, y: originY))
path.addLine(to: CGPoint(x: 0, y: originY))
path.addLine(to: CGPoint(x: 0, y: _waveHeight!))
path.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment