pub type ShapePosition<LengthPercentage> = GenericPosition<LengthPercentage, LengthPercentage>;Expand description
TODO(bug 1982941): Replace with GenericPosition directly if ShapePosition is under utilized.
A generic value for <position> in basic_shape.
Aliased Type§
#[repr(C)]pub struct ShapePosition<LengthPercentage> {
pub horizontal: LengthPercentage,
pub vertical: LengthPercentage,
}Fields§
§horizontal: LengthPercentageThe horizontal component of position.
vertical: LengthPercentageThe vertical component of position.