ColorUint2.rgb constructor

ColorUint2.rgb(
  1. int r,
  2. int g,
  3. int b
)

Implementation

ColorUint2.rgb(int r, int g, int b)
    : length = 3,
      data = 0 {
  setRgb(r, g, b);
}