private Color getRandColor(int fc, int bc) {
return getRandColor(fc, bc, fc);
}
private Color getRandColor(int fc, int bc, int interval) {
if (fc > 255) {
fc = 255;
}
if (bc > 255) {
bc = 255;
}
int r = fc + random.nextInt(bc - interval);
int g = fc + random.nextInt(bc - interval);
int b = fc + random.nextInt(bc - interval);
return new Color(r, g, b);
}
private Color getRandColor(int fc, int bc) {
return getRandColor(fc, bc, fc);
}
private Color getRandColor(int fc, int bc, int interval) {
if (fc > 255) {
fc = 255;
}
if (bc > 255) {
bc = 255;
}
int r = fc + random.nextInt(bc - interval);
int g = fc + random.nextInt(bc - interval);
int b = fc + random.nextInt(bc - interval);
return new Color(r, g, b);
}