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)
            }
        }
    }
}
Installs
10
GitHub Stars
1
First Seen
Feb 14, 2026
charts-3d — makgunay/claude-swift-skills