pixelfoo-apps/src/rect2d.rs

5 lines
60 B
Rust
Raw Normal View History

pub struct Rect2d {
origin: Point2d,
size: Vec2d,
}