pub trait IntoCam16Unclamped<WpParam, C> {
type Scalar;
// Required method
fn into_cam16_unclamped(
self,
parameters: BakedParameters<WpParam, Self::Scalar>,
) -> C;
}Expand description
A trait for converting into a CAM16 color type C without clamping.
Required Associated Types§
Required Methods§
Sourcefn into_cam16_unclamped(
self,
parameters: BakedParameters<WpParam, Self::Scalar>,
) -> C
fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, Self::Scalar>, ) -> C
Converts self into C, using the provided parameters.