add method

Color add(
  1. Color color
)

Implementation

Color add(Color color) {
  r += color.r;
  g += color.g;
  b += color.b;

  return this;
}