UNPKG

@polygonjs/polygonjs

Version:

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

13 lines (12 loc) 372 B
/** * outputs a complement (1-x) * * */ import { BaseNodeGlMathFunctionArg1GlNode } from './_BaseMathFunction'; import { FunctionGLDefinition } from './utils/GLDefinition'; export declare class ComplementGlNode extends BaseNodeGlMathFunctionArg1GlNode { static type(): string; gl_method_name(): string; gl_function_definitions(): FunctionGLDefinition[]; }