PlotKit
PlotKit copied to clipboard
OS X plotting framework
I want to be able to plot a function `(x: Double) -> Double` that maps x values to y values, for instance `sin(x)`
I want to be able to use a function `(t: Double) -> Point` to generate a parametric plot.
It should be easier to create default axes. Right now this is what you need to write: ``` plotView.addAxis(Axis(orientation: .Horizontal, ticks: .Fit(count: 6))) plotView.addAxis(Axis(orientation: .Vertical, ticks: .Fit(count: 4))) ```