gsplat_library / dist /math /Color32.d.ts
bilca's picture
Upload 43 files
b24de8b verified
raw
history blame
306 Bytes
declare class Color32 {
readonly r: number;
readonly g: number;
readonly b: number;
readonly a: number;
constructor(r?: number, g?: number, b?: number, a?: number);
flat(): number[];
flatNorm(): number[];
toHexString(): string;
toString(): string;
}
export { Color32 };