matanlurey / sector.dart

Fast and intuitive 2D data structures.
https://pub.dev/packages/sector
8 stars 0 forks source link

Replace `<Grid>.clear`: `<Grid>.fill(T, [Rect?])` #23

Closed matanlurey closed 2 months ago

matanlurey commented 2 months ago
// Grid
- void clear([T? fill]);
+ void clear([Rect? region]);
+ void fill(T fill, [Rect? region]);