This example shows the effect of the sin()
function.
let result = sin(value)
To run this example you need to include the MathComparePaths.swift file in your project.
let example = MathComparePaths(frame: canvas.frame) {
var points = [Point]()
var x = 0.0
repeat {
let y = sin(x * 2 * M_PI) * -1 //-1 inverts iOS coordinates to look normal
points.append(Point(x, y))
x += 0.001
} while x < 1
return (points, points)
}
canvas.add(example)