* Gets the green component of the color. * @returns The green component [0 .. 255].
()
| 249 | * @returns The green component [0 .. 255]. |
| 250 | */ |
| 251 | get g() { |
| 252 | return ~~(this.normalizedRGBA[1] * 255); |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Sets the green component of the color. |