static Color blendColors(double bish, Color a, Color b) { ret blendColors(a, b, bish); } static Color blendColors(Color a, Color b, double bish) { bish = clampZeroToOne(bish); ret new Color( (float) blend(a.getRed()/255.0, b.getRed()/255.0, bish), (float) blend(a.getGreen()/255.0, b.getGreen()/255.0, bish), (float) blend(a.getBlue()/255.0, b.getBlue()/255.0, bish)); }