Type Alias read_fonts::tables::variations::ItemVariationStore

source ·
pub type ItemVariationStore<'a> = TableRef<'a, ItemVariationStoreMarker>;
Expand description

Aliased Type§

struct ItemVariationStore<'a> { /* private fields */ }

Implementations§

source§

impl<'a> ItemVariationStore<'a>

source

pub fn format(&self) -> u16

Format— set to 1

source

pub fn variation_region_list_offset(&self) -> Offset32

Offset in bytes from the start of the item variation store to the variation region list.

source

pub fn variation_region_list( &self, ) -> Result<VariationRegionList<'a>, ReadError>

Attempt to resolve variation_region_list_offset.

source

pub fn item_variation_data_count(&self) -> u16

The number of item variation data subtables.

source

pub fn item_variation_data_offsets(&self) -> &'a [BigEndian<Nullable<Offset32>>]

Offsets in bytes from the start of the item variation store to each item variation data subtable.

source

pub fn item_variation_data( &self, ) -> ArrayOfNullableOffsets<'a, ItemVariationData<'a>, Offset32>

A dynamically resolving wrapper for item_variation_data_offsets.

source§

impl<'a> ItemVariationStore<'a>

source

pub fn compute_delta( &self, index: DeltaSetIndex, coords: &[F2Dot14], ) -> Result<i32, ReadError>

Computes the delta value for the specified index and set of normalized variation coordinates.

source

pub fn compute_float_delta( &self, index: DeltaSetIndex, coords: &[F2Dot14], ) -> Result<FloatItemDelta, ReadError>

Computes the delta value in floating point for the specified index and set of normalized variation coordinates.

Trait Implementations§

source§

impl<'a> Debug for ItemVariationStore<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> FontRead<'a> for ItemVariationStore<'a>

source§

fn read(data: FontData<'a>) -> Result<Self, ReadError>

Read an instance of Self from the provided data, performing validation. Read more
source§

impl<'a> SomeTable<'a> for ItemVariationStore<'a>

source§

fn type_name(&self) -> &str

The name of this table
source§

fn get_field(&self, idx: usize) -> Option<Field<'a>>

Access this table’s fields, in declaration order.