polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
15 lines (14 loc) • 453 B
JavaScript
import {BaseNodeGlMathFunctionArg1GlNode} from "./_BaseMathFunction";
import ComplementMethods from "./gl/complement.glsl";
import {FunctionGLDefinition} from "./utils/GLDefinition";
export class ComplementGlNode extends BaseNodeGlMathFunctionArg1GlNode {
static type() {
return "complement";
}
gl_method_name() {
return "complement";
}
gl_function_definitions() {
return [new FunctionGLDefinition(this, ComplementMethods)];
}
}