Here you can find the source of washColor(int red, int green, int blue, int alpha, int amountToWash)
private static Color washColor(int red, int green, int blue, int alpha, int amountToWash)
//package com.java2s; //License from project: Open Source License import java.awt.*; public class Main { private static Color washColor(int red, int green, int blue, int alpha, int amountToWash) { return new Color(red / amountToWash, green / amountToWash, blue / amountToWash, alpha / amountToWash); }// www . j a va 2s . c o m }