Last active
July 27, 2018 08:12
-
-
Save Dywane/2e0e90225da4b29a86f33be3be93b3ce to your computer and use it in GitHub Desktop.
Wave Path
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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