pub struct LightAdsPoint {
pub _id: u64,
pub _pos: Mat3x1<f32>,
pub _ads_val_spec: Mat3x1<f32>,
pub _ads_val_diff: Mat3x1<f32>,
pub _ads_val_amb: Mat3x1<f32>,
}
Fields§
§_id: u64
§_pos: Mat3x1<f32>
§_ads_val_spec: Mat3x1<f32>
§ads values
_ads_val_diff: Mat3x1<f32>
§_ads_val_amb: Mat3x1<f32>
Trait Implementations§
Source§impl AdsVal for LightAdsPoint
impl AdsVal for LightAdsPoint
fn get_ads_val_spec(&self) -> Mat3x1<f32>
fn get_ads_val_diff(&self) -> Mat3x1<f32>
fn get_ads_val_amb(&self) -> Mat3x1<f32>
Source§impl Clone for LightAdsPoint
impl Clone for LightAdsPoint
Source§fn clone(&self) -> LightAdsPoint
fn clone(&self) -> LightAdsPoint
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 IObjImpl for LightAdsPoint
impl IObjImpl for LightAdsPoint
Auto Trait Implementations§
impl Freeze for LightAdsPoint
impl RefUnwindSafe for LightAdsPoint
impl Send for LightAdsPoint
impl Sync for LightAdsPoint
impl Unpin for LightAdsPoint
impl UnwindSafe for LightAdsPoint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IObjImplClone for T
impl<T> IObjImplClone for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more