@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
21 lines (20 loc) • 808 B
TypeScript
/**
* Projects this vector from world space into the camera's normalized device coordinate (NDC) space.
*
*
*
*/
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
declare class Vector3ProjectJsParamsConfig extends NodeParamsConfig {
/** @param vector3 */
Vector3: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class Vector3ProjectJsNode extends TypedJsNode<Vector3ProjectJsParamsConfig> {
paramsConfig: Vector3ProjectJsParamsConfig;
static type(): string;
initializeNode(): void;
setLines(shadersCollectionController: JsLinesCollectionController): void;
}
export {};