linebender / kurbo

A Rust library for manipulating curves
Apache License 2.0
727 stars 70 forks source link

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

Closed waywardmonkeys closed 2 months ago

waywardmonkeys commented 2 months 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 months ago

@derekdreery Done!