pub struct TiltData {
pub lamp_geometry: i32,
pub angles: Vec<f64>,
pub factors: Vec<f64>,
}Expand description
TILT data for luminaires with position-dependent output.
Fields§
§lamp_geometry: i32Lamp to luminaire geometry (1-3) 1 = vertical base-up or base-down 2 = horizontal, stays horizontal when tilted 3 = horizontal, tilts with luminaire
angles: Vec<f64>Tilt angles in degrees
factors: Vec<f64>Multiplying factors corresponding to angles
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TiltData
impl RefUnwindSafe for TiltData
impl Send for TiltData
impl Sync for TiltData
impl Unpin for TiltData
impl UnsafeUnpin for TiltData
impl UnwindSafe for TiltData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more