@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
20 lines (19 loc) • 766 B
TypeScript
/**
* multiplies an input vector by the modelViewMatrix
*
*
*
*/
import { TypedGlNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { ShadersCollectionController } from './code/utils/ShadersCollectionController';
declare class ModelViewMatrixMultGlParamsConfig extends NodeParamsConfig {
vector: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class ModelViewMatrixMultGlNode extends TypedGlNode<ModelViewMatrixMultGlParamsConfig> {
paramsConfig: ModelViewMatrixMultGlParamsConfig;
static type(): Readonly<'modelViewMatrixMult'>;
initializeNode(): void;
setLines(linesController: ShadersCollectionController): void;
}
export {};