Skip to main content

SkewXComponent

Type Alias SkewXComponent 

Source
pub type SkewXComponent = NumericValue;
Expand description

A skewX transform component used by the Typed OM.

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

SkewX components are always two-dimensional.

Aliased Type§

#[repr(C)]
pub enum SkewXComponent { 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.