private _toNumber32Bit?: number;
toNumber32Bit(): number {
this._toNumber32Bit = (
this.rgba.r /* */ << 24 |
this.rgba.g /* */ << 16 |
this.rgba.b /* */ << 8 |
this.rgba.a * 0xFF << 0
) >>> 0;
}
return this._toNumber32Bit;
}
static getLighterColor(of: Color, relative: Color, factor?: number): Color {