eulumdat-bevy 0.6.0

3D scene viewer for photometric data using Bevy game engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! Eulumdat 3D Scene Viewer using Bevy
//!
//! A cross-platform 3D viewer for visualizing photometric data in realistic scenes.
//! Works on desktop (Windows, macOS, Linux) and web (WASM).

use eulumdat_bevy::run_native;

fn main() {
    run_native();
}