polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
11 lines (10 loc) • 453 B
TypeScript
import { Number3 } from '../../../types/GlobalTypes';
import { BaseNodeGlMathFunctionArg2GlNode } from './_BaseMathFunction';
import { FunctionGLDefinition } from './utils/GLDefinition';
export declare class AlignGlNode extends BaseNodeGlMathFunctionArg2GlNode {
static type(): string;
initializeNode(): void;
param_default_value(name: string): Number3;
gl_method_name(): string;
gl_function_definitions(): FunctionGLDefinition[];
}