UNPKG

@polygonjs/polygonjs

Version:

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

21 lines (20 loc) 801 B
/** * Converts the vector from this object's local space to world space. * * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class Object3DWorldToLocalJsParamsConfig extends NodeParamsConfig { /** @param vector3 */ Vector3: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>; } export declare class Object3DWorldToLocalJsNode extends TypedJsNode<Object3DWorldToLocalJsParamsConfig> { paramsConfig: Object3DWorldToLocalJsParamsConfig; static type(): string; initializeNode(): void; setLines(shadersCollectionController: JsLinesCollectionController): void; } export {};