Enum gilrs::ff::effect_source::DistanceModel
source · pub enum DistanceModel {
None,
Linear {
ref_distance: f32,
rolloff_factor: f32,
max_distance: f32,
},
LinearClamped {
ref_distance: f32,
rolloff_factor: f32,
max_distance: f32,
},
Inverse {
ref_distance: f32,
rolloff_factor: f32,
},
InverseClamped {
ref_distance: f32,
rolloff_factor: f32,
max_distance: f32,
},
Exponential {
ref_distance: f32,
rolloff_factor: f32,
},
ExponentialClamped {
ref_distance: f32,
rolloff_factor: f32,
max_distance: f32,
},
}
Expand description
Specifies how distance between effect source and listener attenuates effect.
They are based on
OpenAL Specification (chapter
3.4), but the best way to see how they differ is to run ff_pos
example.
Make sure that all parameters are ≥ 0. Additionally Linear
and LinearClamped
models don’t
like if ref_distance == max_distance
while others would prefer ref_distance > 0
.
Variants§
None
Effect is not attenuated by distance.
Linear
Linear distance model.
LinearClamped
Linear distance clamped model.
Inverse
Inverse distance model.
InverseClamped
Inverse distance clamped model.
Exponential
Exponential distance model.
ExponentialClamped
Exponential distance clamped model.
Implementations§
source§impl DistanceModel
impl DistanceModel
fn attenuation(self, distance: f32) -> f32
pub(crate) fn validate(self) -> Result<(), DistanceModelError>
Trait Implementations§
source§impl Clone for DistanceModel
impl Clone for DistanceModel
source§fn clone(&self) -> DistanceModel
fn clone(&self) -> DistanceModel
Returns a copy 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 DistanceModel
impl Debug for DistanceModel
source§impl Default for DistanceModel
impl Default for DistanceModel
source§fn default() -> DistanceModel
fn default() -> DistanceModel
Returns the “default value” for a type. Read more
source§impl PartialEq for DistanceModel
impl PartialEq for DistanceModel
source§fn eq(&self, other: &DistanceModel) -> bool
fn eq(&self, other: &DistanceModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for DistanceModel
impl StructuralPartialEq for DistanceModel
Auto Trait Implementations§
impl Freeze for DistanceModel
impl RefUnwindSafe for DistanceModel
impl Send for DistanceModel
impl Sync for DistanceModel
impl Unpin for DistanceModel
impl UnwindSafe for DistanceModel
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