B
bob smith
So, I have a rectangle class as follows:
public class My_Rectangle {
double x, y, width, height;
AffineTransform aft;
Anyone know a good strategy for checking if a point is in the rectangle?
The main difficulty is the transform.
public class My_Rectangle {
double x, y, width, height;
AffineTransform aft;
Anyone know a good strategy for checking if a point is in the rectangle?
The main difficulty is the transform.