Nativer 3D-wgpu-Renderer (render3d, M0+M1): Wand-Extrusion, Kamera, Licht

Eigenstaendige Crate wie render2d (render/window-Stufung, serde-only Mesh-
schicht headless testbar). Wand-Extrusion (Band via Links-Normale, Quader mit
nach aussen zeigenden Normalen), handgerechnete Mat4 (perspektiv+ortho, wgpu-
Clip-Z [0,1], 5 Kamera-Presets), Directional-Light + Tiefenpuffer + Backface-
Culling. Orbit-Spike (cargo run --features window --bin spike3d). Plus Port-
Briefing mit M2..M9-Milestones (three.js-Viewport-Bestandsaufnahme).
This commit is contained in:
2026-07-02 00:29:02 +02:00
parent 260320af2e
commit c96239a794
11 changed files with 4379 additions and 0 deletions
+57
View File
@@ -0,0 +1,57 @@
// WGSL-Shader des nativen 3D-Renderers. Als Konstante hier, damit die Quelle auch
// ohne aktives GPU-Feature (headless) im Repo pruefbar bleibt (naga-Test, Muster:
// render2d/shaders).
//
// Beleuchtung: EIN Directional-Light (Sonne) + ambienter Grundterm — das Pendant
// zur three.js-Sicht (AmbientLight 0.6 + DirectionalLight 1.1 bei (6,12,4), siehe
// Viewport3D.tsx). PBR (Rauheit/Metallik/Texturen) folgt in spaeteren Milestones.
//
// Uniform-Layout (group(0) binding(0)):
// view_proj : mat4x4<f32> world -> Clip (proj * view)
// light_dir : vec4<f32> Richtung ZUM Licht (world, xyz; w ungenutzt)
// ambient : vec4<f32> ambienter Grundfaktor (rgb; a ungenutzt)
//
// Vertex-Attribute: position (world), normal (world), color (Albedo).
/// Der einzige Shader (Vertex + Fragment). Diffuse Lambert-Beleuchtung mit einem
/// Directional-Light plus ambientem Sockel — GPU-Aequivalent des three.js-Setups.
pub const MESH_WGSL: &str = r#"
struct Globals {
view_proj : mat4x4<f32>,
light_dir : vec4<f32>,
ambient : vec4<f32>,
};
@group(0) @binding(0) var<uniform> globals : Globals;
struct VsIn {
@location(0) position : vec3<f32>,
@location(1) normal : vec3<f32>,
@location(2) color : vec3<f32>,
};
struct VsOut {
@builtin(position) clip_pos : vec4<f32>,
@location(0) world_normal : vec3<f32>,
@location(1) color : vec3<f32>,
};
@vertex
fn vs_main(in : VsIn) -> VsOut {
var out : VsOut;
out.clip_pos = globals.view_proj * vec4<f32>(in.position, 1.0);
out.world_normal = in.normal;
out.color = in.color;
return out;
}
@fragment
fn fs_main(in : VsOut) -> @location(0) vec4<f32> {
let n = normalize(in.world_normal);
let l = normalize(globals.light_dir.xyz);
// Lambert-Diffusanteil; Rueckseiten (n.l < 0) tragen nichts bei.
let diffuse = max(dot(n, l), 0.0);
// Ambienter Sockel (Albedo * ambient) + gerichteter Anteil (Albedo * diffuse).
let shaded = in.color * globals.ambient.rgb + in.color * diffuse;
return vec4<f32>(shaded, 1.0);
}
"#;