linebender / kurbo

A Rust library for manipulating curves
Apache License 2.0
697 stars 67 forks source link

Add `Rect::is_zero_area`, `Size::is_zero_area` #370

Closed waywardmonkeys closed 2 weeks ago

waywardmonkeys commented 2 weeks ago

These replace Rect::is_empty and Size::is_empty (which are now deprecated) as the treatment of negative areas as not being empty can be slightly confusing, so using a more specific name makes things more clear.

waywardmonkeys commented 2 weeks ago

@derekdreery Done!