@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
20 lines (19 loc) • 719 B
TypeScript
/**
* transforms an input color (vec3) from LAB color space to RGB
*
*
*
*/
import { TypedGlNode } from './_Base';
import { ShadersCollectionController } from './code/utils/ShadersCollectionController';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class LabToRgbGlParamsConfig extends NodeParamsConfig {
lab: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class LabToRgbGlNode extends TypedGlNode<LabToRgbGlParamsConfig> {
paramsConfig: LabToRgbGlParamsConfig;
static type(): string;
initializeNode(): void;
setLines(shaders_collection_controller: ShadersCollectionController): void;
}
export {};