termal_core/image/
rect.rs

1use minlin::Vec4;
2
3/// Rectangle given by x, y, width and height.
4pub type Rect<T = f32> = Vec4<T>;