return new Rectangle(globalLocation, size);
}
public Rectangle getRectangleIncludingOuterLines(){
double hlw = 0.5 * prop.getReal(LINE_WIDTH);
return new Rectangle(globalLocation.getX() - hlw, globalLocation.getY() -hlw , size.getX() + 2*hlw, size.getY() + 2*hlw);
}