PColorRGB constructor

PColorRGB(
  1. int r,
  2. int g,
  3. int b
)

Implementation

PColorRGB(int r, int g, int b)
    : r = r.clamp(0, 255),
      g = g.clamp(0, 255),
      b = b.clamp(0, 255);