Trait noise_functions::Sample3a

source ·
pub trait Sample3a {
    // Required method
    fn sample3a(&self, pos: impl Into<f32x4>) -> f32;
}
Available on crate feature nightly-simd only.
Expand description

Helper trait that provides sample3a as a shorthand for Sample<3, f32x4>::sample.

It also works for any impl Into<f32x4>.

Required Methods§

source

fn sample3a(&self, pos: impl Into<f32x4>) -> f32

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Noise> Sample3a for Noise
where Noise: Sample<3, f32x4>,