1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! Photometric lighting module for Bevy.
//!
//! This module provides generic photometric lighting support for any Bevy application.
//! It is designed to be extraction-ready for a standalone `bevy_photometry` crate.
//!
//! # Features
//!
//! - [`PhotometricData`] trait for abstracting photometric data sources
//! - [`PhotometricLight`] component for spawning photometric lights
//! - [`PhotometricPlugin`] for automatic light synchronization
//! - Color utilities (Kelvin to RGB, CRI adjustment)
//! - Photometric solid mesh generation
//!
//! # Example
//!
//! ```ignore
//! use bevy::prelude::*;
//! use eulumdat_bevy::photometric::*;
//!
//! fn main() {
//! App::new()
//! .add_plugins(DefaultPlugins)
//! .add_plugins(PhotometricPlugin::<MyLightData>::default())
//! .add_systems(Startup, setup)
//! .run();
//! }
//!
//! fn setup(mut commands: Commands) {
//! let data = MyLightData::load("light.ldt");
//! commands.spawn(PhotometricLightBundle::new(data)
//! .with_transform(Transform::from_xyz(0.0, 3.0, 0.0)));
//! }
//! ```
// Re-export public API
pub use ;
pub use PhotometricData;
pub use ;
pub use ;
pub use PhotometricPlugin;