use crate::text;
pub struct CssPx;
pub use euclid::point2 as point;
pub use euclid::rect;
pub type Length<U> = euclid::Length<f32, U>;
pub type Point<U> = euclid::TypedPoint2D<f32, U>;
pub type Size<U> = euclid::TypedSize2D<f32, U>;
pub type Rect<U> = euclid::TypedRect<f32, U>;
pub type SideOffsets<U> = euclid::TypedSideOffsets2D<f32, U>;
pub type Scale<Src, Dest> = euclid::TypedScale<f32, Src, Dest>;
#[derive(Copy, Clone, PartialEq)]
pub struct RGBA(pub f32, pub f32, pub f32, pub f32);
pub struct TextRun<'a> {
pub segment: &'a text::ShapedSegment,
pub font_size: Length<CssPx>,
pub origin: Point<CssPx>,
}
impl From<cssparser::RGBA> for RGBA {
fn from(c: cssparser::RGBA) -> Self {
RGBA(c.red_f32(), c.green_f32(), c.blue_f32(), c.alpha_f32())
}
}