Struct skrifa::AxisCollection

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

Collection of axes in a variable font.

Converts user (fvar) locations to normalized locations. See Self::location.

See the Axis type for more detail.

Implementations§

source§

impl<'a> AxisCollection<'a>

source

pub fn new(font: &impl TableProvider<'a>) -> Self

Creates a new axis collection from the given font.

source

pub fn len(&self) -> usize

Returns the number of variation axes in the font.

source

pub fn is_empty(&self) -> bool

Returns true if the collection is empty.

source

pub fn get(&self, index: usize) -> Option<Axis>

Returns the axis at the given index.

source

pub fn get_by_tag(&self, tag: Tag) -> Option<Axis>

Returns the axis with the given tag.

§Examples
let opsz = Tag::new(b"opsz");
assert_eq!(font.axes().get_by_tag(opsz).unwrap().tag(), opsz);
source

pub fn location<I>(&self, settings: I) -> Location

Given an iterator of variation settings in user space, computes an ordered sequence of normalized coordinates.

  • Setting selectors that don’t match an axis are ignored.
  • Setting values are clamped to the range of their associated axis before normalization.
  • If more than one setting for an axis is provided, the last one is used.
  • Omitted settings are set to 0.0, representing the default position in variation space.
§Examples
let location = font.axes().location([("wght", 250.0), ("wdth", 75.0)]);
source

pub fn location_to_slice<I>( &self, settings: I, location: &mut [NormalizedCoord], )

Given an iterator of variation settings in user space, computes an ordered sequence of normalized coordinates and stores them in the target slice.

  • Setting selectors that don’t match an axis are ignored.
  • Setting values are clamped to the range of their associated axis before normalization.
  • If more than one setting for an axis is provided, the last one is used.
  • If no setting for an axis is provided, the associated coordinate is set to the normalized value 0.0, representing the default position in variation space.
§Examples
let axes = font.axes();
let mut location = vec![NormalizedCoord::default(); axes.len()];
axes.location_to_slice([("wght", 250.0), ("wdth", 75.0)], &mut location);
source

pub fn filter<I>( &self, settings: I, ) -> impl Iterator<Item = VariationSetting> + Clone

Given an iterator of variation settings in user space, returns a new iterator yielding those settings that are valid for this axis collection.

  • Setting selectors that don’t match an axis are dropped.
  • If more than one setting for an axis is provided, the last one is retained.
  • Setting values are clamped to the range of their associated axis.
§Examples
// Assuming a font contains a single "wght" (weight) axis with range
// 100-900:
let axes = font.axes();
let filtered: Vec<_> = axes
    .filter([("wght", 400.0), ("opsz", 100.0), ("wght", 1200.0)])
    .collect();
// The first "wght" and "opsz" settings are dropped and the final
// "wght" axis is clamped to the maximum value of 900.
assert_eq!(&filtered, &[("wght", 900.0).into()]);
source

pub fn iter(&self) -> impl Iterator<Item = Axis> + 'a + Clone

Returns an iterator over the axes in the collection.

Trait Implementations§

source§

impl<'a> Clone for AxisCollection<'a>

source§

fn clone(&self) -> AxisCollection<'a>

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> Freeze for AxisCollection<'a>

§

impl<'a> RefUnwindSafe for AxisCollection<'a>

§

impl<'a> Send for AxisCollection<'a>

§

impl<'a> Sync for AxisCollection<'a>

§

impl<'a> Unpin for AxisCollection<'a>

§

impl<'a> UnwindSafe for AxisCollection<'a>

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.