123456789101112131415161718192021222324252627282930 |
- export class Strategy {
-
- unifiedCoordinateSystem(model, worldPose) {
- throw new Error('Method "unifiedCoordinateSystem" must be implemented.');
- }
-
- setLocalOriginPose(worldPose) {
- throw new Error('Method "setLocalOriginPose" must be implemented.');
- }
-
- convertLocalToWorld(model, localPosition) {
- throw new Error('Method "convertLocalToWorld" must be implemented.');
- }
- }
|