[][src]Struct hcomplex::transform::Moebius

pub struct Moebius<U> { /* fields omitted */ }

Implementations

impl<U> Moebius<U>[src]

pub fn new(a: U, b: U, c: U, d: U) -> Self[src]

pub fn a_ref(&self) -> &U[src]

pub fn b_ref(&self) -> &U[src]

pub fn c_ref(&self) -> &U[src]

pub fn d_ref(&self) -> &U[src]

pub fn a_mut(&mut self) -> &mut U[src]

pub fn b_mut(&mut self) -> &mut U[src]

pub fn c_mut(&mut self) -> &mut U[src]

pub fn d_mut(&mut self) -> &mut U[src]

impl<U: Clone> Moebius<U>[src]

pub fn a(&self) -> U[src]

pub fn b(&self) -> U[src]

pub fn c(&self) -> U[src]

pub fn d(&self) -> U[src]

impl<U: Neg<Output = U> + Mul<Output = U> + Div<Output = U> + Sub<Output = U> + Clone> Moebius<U>[src]

pub fn det(&self) -> U[src]

pub fn normalize(self) -> Self[src]

Trait Implementations

impl<U> Chain<U> for Moebius<U> where
    U: Add<Output = U> + Mul<Output = U> + Div<Output = U> + Clone
[src]

impl<U: Clone> Clone for Moebius<U>[src]

impl<U: Copy> Copy for Moebius<U>[src]

impl<U: Debug> Debug for Moebius<U>[src]

impl<T: Algebra + Clone> Deriv<Construct<T, T>> for Moebius<Complex<T>>[src]

impl<T: NumCast + Algebra + Dot<Output = T> + Clone> DerivDir<Construct<T, Construct<T, T>>> for Moebius<Complex<T>>[src]

impl<T: Float + Algebra, U: NormSqr<Output = T> + Clone> Distribution<Moebius<Construct<T, U>>> for Normalized where
    StandardNormal: Distribution<Moebius<Construct<T, U>>>,
    Construct<T, U>: Algebra<T>, 
[src]

impl<U> Distribution<Moebius<U>> for StandardNormal where
    StandardNormal: Distribution<U>, 
[src]

impl<U> From<[U; 4]> for Moebius<U>[src]

impl<U: Zero + One> Identity for Moebius<U>[src]

impl<U> Into<[U; 4]> for Moebius<U>[src]

impl<U: PartialEq> PartialEq<Moebius<U>> for Moebius<U>[src]

impl<U> StructuralPartialEq for Moebius<U>[src]

impl<T: Algebra + Clone, U: Algebra<T> + Clone> Transform<Construct<T, Construct<T, U>>> for Moebius<Construct<T, U>>[src]

impl<U> Transform<U> for Moebius<U> where
    U: Add<Output = U> + Mul<Output = U> + Div<Output = U> + Clone
[src]

Auto Trait Implementations

impl<U> RefUnwindSafe for Moebius<U> where
    U: RefUnwindSafe

impl<U> Send for Moebius<U> where
    U: Send

impl<U> Sync for Moebius<U> where
    U: Sync

impl<U> Unpin for Moebius<U> where
    U: Unpin

impl<U> UnwindSafe for Moebius<U> where
    U: UnwindSafe

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>,