skrifa::instance

Type Alias NormalizedCoord

Source
pub type NormalizedCoord = F2Dot14;
Expand description

Type for a normalized variation coordinate.

Aliased Type§

struct NormalizedCoord(/* private fields */);

Implementations

Source§

impl F2Dot14

Source

pub const MIN: F2Dot14

Minimum value.

Source

pub const MAX: F2Dot14

Maximum value.

Source

pub const EPSILON: F2Dot14

This type’s smallest representable value

Source

pub const ZERO: F2Dot14

Representation of 0.0.

Source

pub const ONE: F2Dot14

Representation of 1.0.

Source

pub const fn from_bits(bits: i16) -> F2Dot14

Creates a new fixed point value from the underlying bit representation.

Source

pub const fn to_bits(self) -> i16

Returns the underlying bit representation of the value.

Source

pub const fn round(self) -> F2Dot14

Returns the nearest integer value.

Source

pub const fn abs(self) -> F2Dot14

Returns the absolute value of the number.

Source

pub const fn floor(self) -> F2Dot14

Returns the largest integer less than or equal to the number.

Source

pub const fn fract(self) -> F2Dot14

Returns the fractional part of the number.

Source

pub fn wrapping_add(self, other: F2Dot14) -> F2Dot14

Wrapping addition.

Source

pub const fn saturating_add(self, other: F2Dot14) -> F2Dot14

Saturating addition.

Source

pub fn checked_add(self, other: F2Dot14) -> Option<F2Dot14>

Checked addition.

Source

pub const fn wrapping_sub(self, other: F2Dot14) -> F2Dot14

Wrapping substitution.

Source

pub const fn saturating_sub(self, other: F2Dot14) -> F2Dot14

Saturating substitution.

Source

pub const fn to_be_bytes(self) -> [u8; 2]

The representation of this number as a big-endian byte array.

Source§

impl F2Dot14

Source

pub fn from_f32(x: f32) -> F2Dot14

Creates a fixed point value from af32.

This operation is lossy; the float will be rounded to the nearest representable value.

Source

pub fn to_f32(self) -> f32

Returns the value as an f32.

This operation is lossless: all representable values can be round-tripped.

Source§

impl F2Dot14

Source

pub const fn to_fixed(self) -> Fixed

Converts a 2.14 to 16.16 fixed point value.

Trait Implementations

Source§

impl Add for F2Dot14

Source§

type Output = F2Dot14

The resulting type after applying the + operator.
Source§

fn add(self, other: F2Dot14) -> F2Dot14

Performs the + operation. Read more
Source§

impl AddAssign for F2Dot14

Source§

fn add_assign(&mut self, other: F2Dot14)

Performs the += operation. Read more
Source§

impl Clone for F2Dot14

Source§

fn clone(&self) -> F2Dot14

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
Source§

impl Debug for F2Dot14

Source§

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

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

impl Default for F2Dot14

Source§

fn default() -> F2Dot14

Returns the “default value” for a type. Read more
Source§

impl Display for F2Dot14

Source§

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

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

impl FloatItemDeltaTarget for F2Dot14

Source§

impl Hash for F2Dot14

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for F2Dot14

Source§

fn cmp(&self, other: &F2Dot14) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for F2Dot14

Source§

fn eq(&self, other: &F2Dot14) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for F2Dot14

Source§

fn partial_cmp(&self, other: &F2Dot14) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Scalar for F2Dot14

Source§

type Raw = [u8; 2]

The raw byte representation of this type.
Source§

fn to_raw(self) -> [u8; 2]

Encode this type as raw big-endian bytes
Source§

fn from_raw(raw: [u8; 2]) -> F2Dot14

Create an instance of this type from raw big-endian bytes
Source§

fn read(slice: &[u8]) -> Option<Self>

Attempt to read a scalar from a slice. Read more
Source§

impl Sub for F2Dot14

Source§

type Output = F2Dot14

The resulting type after applying the - operator.
Source§

fn sub(self, other: F2Dot14) -> F2Dot14

Performs the - operation. Read more
Source§

impl SubAssign for F2Dot14

Source§

fn sub_assign(&mut self, other: F2Dot14)

Performs the -= operation. Read more
Source§

impl Zeroable for F2Dot14

Source§

fn zeroed() -> Self

Source§

impl AnyBitPattern for F2Dot14

Source§

impl Copy for F2Dot14

Source§

impl Eq for F2Dot14

Source§

impl NoUninit for F2Dot14

Source§

impl StructuralPartialEq for F2Dot14