@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
20 lines (19 loc) • 695 B
TypeScript
/**
* outputs the luminance of a color
*
*
*
*/
import { TypedGlNode } from './_Base';
import { ShadersCollectionController } from './code/utils/ShadersCollectionController';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class LuminanceGlParamsConfig extends NodeParamsConfig {
color: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class LuminanceGlNode extends TypedGlNode<LuminanceGlParamsConfig> {
paramsConfig: LuminanceGlParamsConfig;
static type(): string;
initializeNode(): void;
setLines(shadersCollectionController: ShadersCollectionController): void;
}
export {};