Type Alias read_fonts::tables::colr::PaintLinearGradient

source ·
pub type PaintLinearGradient<'a> = TableRef<'a, PaintLinearGradientMarker>;
Expand description

Aliased Type§

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

Implementations§

source§

impl<'a> PaintLinearGradient<'a>

source

pub fn format(&self) -> u8

Set to 4.

source

pub fn color_line_offset(&self) -> Offset24

Offset to ColorLine table.

source

pub fn color_line(&self) -> Result<ColorLine<'a>, ReadError>

Attempt to resolve color_line_offset.

source

pub fn x0(&self) -> FWord

Start point (p₀) x coordinate.

source

pub fn y0(&self) -> FWord

Start point (p₀) y coordinate.

source

pub fn x1(&self) -> FWord

End point (p₁) x coordinate.

source

pub fn y1(&self) -> FWord

End point (p₁) y coordinate.

source

pub fn x2(&self) -> FWord

Rotation point (p₂) x coordinate.

source

pub fn y2(&self) -> FWord

Rotation point (p₂) y coordinate.

Trait Implementations§

source§

impl<'a> Debug for PaintLinearGradient<'a>

source§

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

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

impl<'a> FontRead<'a> for PaintLinearGradient<'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 PaintLinearGradient<'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.