UNPKG

@polygonjs/polygonjs

Version:

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

18 lines (17 loc) 640 B
/** * get the matrix of a tracked marker * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class GetWebXRTrackedMarkerJsParamsConfig extends NodeParamsConfig { } export declare class GetWebXRTrackedMarkerPropertyJsNode extends TypedJsNode<GetWebXRTrackedMarkerJsParamsConfig> { paramsConfig: GetWebXRTrackedMarkerJsParamsConfig; static type(): string; initializeNode(): void; setLines(shadersCollectionController: JsLinesCollectionController): void; } export {};