[][src]Struct msdfgen_sys::msdfgen_SignedDistance

#[repr(C)]
pub struct msdfgen_SignedDistance {
    pub distance: f64,
    pub dot: f64,
}

Represents a signed distance and alignment, which together can be compared to uniquely determine the closest edge segment.

Fields

distance: f64dot: f64

Methods

impl msdfgen_SignedDistance[src]

pub unsafe fn new() -> Self[src]

pub unsafe fn new1(dist: f64, d: f64) -> Self[src]

Trait Implementations

impl Clone for msdfgen_SignedDistance[src]

impl Copy for msdfgen_SignedDistance[src]

impl Debug for msdfgen_SignedDistance[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.