colorFromInt function

Color colorFromInt(
  1. int vol
)

Implementation

Color colorFromInt(int vol) {
  return Color(1.0, 1.0, 1.0, 1.0);
}