Initial commit: WebGPU portfolio — generative-art site with DOM overlay

This commit is contained in:
2026-07-26 19:06:17 +02:00
commit 7172894ebb
30 changed files with 3916 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { ProjectPage } from './index'
const page: ProjectPage = {
id: 'radiance-caching',
name: 'Radiance Caching for Real-Time Volumetric Rendering',
tagline: "Master's Thesis — TUM",
date: '12/2025 — 06/2026',
tech: ['C++', 'CUDA', 'Vulkan', 'OptiX'],
content: `
<p>Researched and implemented a real-time radiance cache for volumetric path tracing
using 3D Gaussian Splatting and a fused MLP as the cache representation.</p>
<p>Developed an online differentiable optimization pipeline in CUDA that adapts the
Gaussian cache to dynamic lighting and transfer function changes during rendering.</p>
<p>Built a spatial-hash-based fused MLP for radiance caching on volumetric
heterogeneous media. Supervised by Prof. Westermann.</p>
`,
}
export default page