improving java2d integration

This commit is contained in:
benfry
2005-02-15 18:26:32 +00:00
parent 7b437fd100
commit 901646fb3d
6 changed files with 101 additions and 122 deletions

View File

@@ -219,8 +219,8 @@ public class PImage implements PConstants, Cloneable {
public void modified() {
mx1 = 0;
my1 = 0;
mx2 = width;
my2 = height;
mx2 = width - 1;
my2 = height - 1;
modified = true;
}