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)
            }
        }
    }
}
Related skills

More from makgunay/claude-swift-skills

Installs
6
First Seen
Feb 14, 2026