[][src]Struct bae_rs::modifiers::highpass::HighPass

pub struct HighPass { /* fields omitted */ }

High pass filter adapted from the 3rd Order Butterworth Low Pass Filter with resonance.

Methods

impl HighPass[src]

pub fn new(fc: MathT, r: MathT) -> HighPass[src]

Creates a new high pass from the given cutoff frequency and resonance values.

Parameters

  • fc - The cutoff frequency.
  • r - The resonance of the filter. Value should be in the range [0,1]. If the value falls out of that range it is clamped to the closer value.

pub fn get_central_frequency(&self) -> MathT[src]

Returns the central frequency of the filter.

pub fn set_central_frequency(&mut self, fc: MathT)[src]

Sets the central frequency of the filter.

pub fn get_resonance(&self) -> MathT[src]

Returns the resonance of the filter.

pub fn set_resonance(&mut self, r: MathT)[src]

Sets the resonance of the filter.

Trait Implementations

impl Clone for HighPass[src]

impl Modifier for HighPass[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,