Rename scanSubPixmap() to scanArea()

This commit is contained in:
Elias Batek 2024-10-08 00:22:35 +02:00
parent 0bdea48b9b
commit 7d39086857
1 changed files with 5 additions and 2 deletions

View File

@ -343,12 +343,15 @@ struct Pixmap {
/++
Retrieves a rectangular subimage of the pixmap.
+/
inout(SubPixmap) scanSubPixmap(Point pos, Size size) inout {
inout(SubPixmap) scanArea(Point pos, Size size) inout {
return inout(SubPixmap)(this, size, pos);
}
/// TODO: remove
deprecated alias scan2D = scanSubPixmap;
deprecated alias scanSubPixmap = scanArea;
/// TODO: remove
deprecated alias scan2D = scanArea;
/++
Retrieves the first line of the Pixmap.