Skip to main content

SkewYComponent

Type Alias SkewYComponent 

Source
pub type SkewYComponent = NumericValue;
Expand description

A skewY transform component used by the Typed OM.

This corresponds to CSSSkewY in the Typed OM specification. The value is always present; omitted angles are represented as 0deg.

SkewY components are always two-dimensional.

Aliased Type§

#[repr(C)]
pub enum SkewYComponent { Unit(UnitValue), Sum(MathSum), }

Variants§

§

Unit(UnitValue)

A single numeric value with a concrete unit.

This corresponds to CSSUnitValue.

§

Sum(MathSum)

A sum of numeric values.

This corresponds to CSSMathSum.