pub struct IsoluxParams {
pub mounting_height: f64,
pub tilt_angle: f64,
pub area_half_width: f64,
pub area_half_depth: f64,
pub grid_resolution: usize,
}Expand description
Parameters for isolux calculation
Fields§
§mounting_height: f64Mounting height in meters
tilt_angle: f64Tilt angle in degrees (0 = pointing straight down, 90 = horizontal)
area_half_width: f64Half-width of the ground area in meters
area_half_depth: f64Half-depth of the ground area in meters
grid_resolution: usizeNumber of grid cells per axis
Trait Implementations§
Source§impl Clone for IsoluxParams
impl Clone for IsoluxParams
Source§fn clone(&self) -> IsoluxParams
fn clone(&self) -> IsoluxParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IsoluxParams
impl Debug for IsoluxParams
Source§impl Default for IsoluxParams
impl Default for IsoluxParams
Source§impl PartialEq for IsoluxParams
impl PartialEq for IsoluxParams
impl Copy for IsoluxParams
impl StructuralPartialEq for IsoluxParams
Auto Trait Implementations§
impl Freeze for IsoluxParams
impl RefUnwindSafe for IsoluxParams
impl Send for IsoluxParams
impl Sync for IsoluxParams
impl Unpin for IsoluxParams
impl UnsafeUnpin for IsoluxParams
impl UnwindSafe for IsoluxParams
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