pub struct Sigmoidal {
pub sr: f32,
pub sg: f32,
pub sb: f32,
}Expand description
Represents color as sigmoid function: y = 1 / (1 + exp(-x))
and it’s inverse
x = ln(y / (1 - y))
Fields§
§sr: f32§sg: f32§sb: f32Implementations§
Trait Implementations§
source§impl AddAssign<f32> for Sigmoidal
impl AddAssign<f32> for Sigmoidal
source§fn add_assign(&mut self, rhs: f32)
fn add_assign(&mut self, rhs: f32)
Performs the
+= operation. Read moresource§impl AddAssign for Sigmoidal
impl AddAssign for Sigmoidal
source§fn add_assign(&mut self, rhs: Sigmoidal)
fn add_assign(&mut self, rhs: Sigmoidal)
Performs the
+= operation. Read moresource§impl DivAssign<f32> for Sigmoidal
impl DivAssign<f32> for Sigmoidal
source§fn div_assign(&mut self, rhs: f32)
fn div_assign(&mut self, rhs: f32)
Performs the
/= operation. Read moresource§impl DivAssign for Sigmoidal
impl DivAssign for Sigmoidal
source§fn div_assign(&mut self, rhs: Sigmoidal)
fn div_assign(&mut self, rhs: Sigmoidal)
Performs the
/= operation. Read moresource§impl MulAssign<f32> for Sigmoidal
impl MulAssign<f32> for Sigmoidal
source§fn mul_assign(&mut self, rhs: f32)
fn mul_assign(&mut self, rhs: f32)
Performs the
*= operation. Read moresource§impl MulAssign for Sigmoidal
impl MulAssign for Sigmoidal
source§fn mul_assign(&mut self, rhs: Sigmoidal)
fn mul_assign(&mut self, rhs: Sigmoidal)
Performs the
*= operation. Read moresource§impl PartialOrd for Sigmoidal
impl PartialOrd for Sigmoidal
source§impl SubAssign<f32> for Sigmoidal
impl SubAssign<f32> for Sigmoidal
source§fn sub_assign(&mut self, rhs: f32)
fn sub_assign(&mut self, rhs: f32)
Performs the
-= operation. Read moresource§impl SubAssign for Sigmoidal
impl SubAssign for Sigmoidal
source§fn sub_assign(&mut self, rhs: Sigmoidal)
fn sub_assign(&mut self, rhs: Sigmoidal)
Performs the
-= operation. Read moreimpl Copy for Sigmoidal
impl StructuralPartialEq for Sigmoidal
Auto Trait Implementations§
impl Freeze for Sigmoidal
impl RefUnwindSafe for Sigmoidal
impl Send for Sigmoidal
impl Sync for Sigmoidal
impl Unpin for Sigmoidal
impl UnwindSafe for Sigmoidal
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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