@openglobus/og 0.27.7 → 0.27.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -310,7 +310,7 @@ declare class Camera {
310
310
  * @param {Vec2} pos - Screen X coordinate
311
311
  * @returns {Vec3} - Direction vector
312
312
  */
313
- unproject2v(pos: Vec2): Vec3;
313
+ unproject2v(pos: Vec2, dist?: number, outPos?: Vec3): Vec3;
314
314
  /**
315
315
  * Returns normal vector direction to the unprojected screen point from camera eye
316
316
  * @public
@@ -51,6 +51,7 @@ export declare class MouseNavigation extends Control {
51
51
  events: EventsHandler<MouseNavigationEventsList>;
52
52
  protected _lookPos: Vec3 | undefined;
53
53
  protected _grabbedPoint: Vec3 | null;
54
+ protected _grabbedDist: number;
54
55
  protected _targetZoomPoint: Vec3 | null;
55
56
  protected _targetDragPoint: Vec3 | null;
56
57
  protected _targetRotationPoint: Vec3 | null;
@@ -67,5 +67,6 @@ export declare class TouchNavigation extends Control {
67
67
  protected onTouchCancel(e: ITouchState): void;
68
68
  protected onTouchMove(e: ITouchState): void;
69
69
  protected onDraw(): void;
70
+ private setLock;
70
71
  }
71
72
  export {};