UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

11 lines (10 loc) 430 B
import { Vector3, Color } from 'three'; import { NamedFunction2, NamedFunction4 } from './_Base'; export declare class colorSetRGB extends NamedFunction4<[Color, number, number, number]> { static type(): string; func(color: Color, r: number, g: number, b: number): Color; } export declare class hsvToRgb extends NamedFunction2<[Vector3, Color]> { static type(): string; func(hsv: Vector3, target: Color): Color; }