UNPKG

@polygonjs/polygonjs

Version:

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

16 lines (14 loc) 477 B
import {Matrix4} from 'three'; import {CoreMarkerTrackingControllerOptions, MarkerTrackingControllerConfig} from './Common'; export class CoreMarkerTrackingController { constructor(options: CoreMarkerTrackingControllerOptions) {} errorMessage(): string | void {} trackedMatrix(targetMatrix: Matrix4) {} config(): MarkerTrackingControllerConfig { return { renderFunction: function () {}, mountFunction: function () {}, unmountFunction: function () {}, }; } }