charts-3d
Installation
SKILL.md
Swift Charts — 3D Visualization
Basic 3D Surface Plot
import SwiftUI
import Charts
struct Surface3DView: View {
var body: some View {
Chart3D {
SurfacePlot(x: "X", y: "Y", z: "Z") { x, y in
sin(x) * cos(y)
}
}
}
}