Struct read_fonts::tables::variations::TupleVariation

source ·
pub struct TupleVariation<'a, T> { /* private fields */ }
Expand description

A single set of tuple variation data

Implementations§

source§

impl<'a, T> TupleVariation<'a, T>
where T: TupleDelta,

source

pub fn has_deltas_for_all_points(&self) -> bool

Returns true if this tuple provides deltas for all points in a glyph.

source

pub fn point_numbers(&'a self) -> PackedPointNumbersIter<'a>

source

pub fn peak(&self) -> Tuple<'a>

Returns the ‘peak’ tuple for this variation

source

pub fn intermediate_start(&self) -> Option<Tuple<'a>>

source

pub fn intermediate_end(&self) -> Option<Tuple<'a>>

source

pub fn compute_scalar(&self, coords: &[F2Dot14]) -> Option<Fixed>

Compute the fixed point scalar for this tuple at the given location in variation space.

The coords slice must be of lesser or equal length to the number of axes. If it is less, missing (trailing) axes will be assumed to have zero values.

Returns None if this tuple is not applicable at the provided coordinates (e.g. if the resulting scalar is zero).

source

pub fn compute_scalar_f32(&self, coords: &[F2Dot14]) -> Option<f32>

Compute the floating point scalar for this tuple at the given location in variation space.

The coords slice must be of lesser or equal length to the number of axes. If it is less, missing (trailing) axes will be assumed to have zero values.

Returns None if this tuple is not applicable at the provided coordinates (e.g. if the resulting scalar is zero).

source

pub fn deltas(&'a self) -> TupleDeltaIter<'a, T>

Iterate over the deltas for this tuple.

This does not account for scaling. Returns only explicitly encoded deltas, e.g. an omission by IUP will not be present.

Trait Implementations§

source§

impl<'a, T: Clone> Clone for TupleVariation<'a, T>

source§

fn clone(&self) -> TupleVariation<'a, T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'a, T> Freeze for TupleVariation<'a, T>

§

impl<'a, T> RefUnwindSafe for TupleVariation<'a, T>

§

impl<'a, T> Send for TupleVariation<'a, T>

§

impl<'a, T> Sync for TupleVariation<'a, T>

§

impl<'a, T> Unpin for TupleVariation<'a, T>

§

impl<'a, T> UnwindSafe for TupleVariation<'a, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.