static Color colorWithAlpha(Color c, float alpha) { ret new Color(c.getRed()/255f, c.getGreen()/255f, c.getBlue()/255f, alpha); } static Color colorWithAlpha(double alpha, Color c) { ret colorWithAlpha(c, (float) alpha); }