@openglobus/og 0.27.1 → 0.27.3
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.
|
@@ -3,7 +3,6 @@ import type { IControlParams } from "./Control";
|
|
|
3
3
|
import type { IMouseState } from "../renderer/RendererEvents";
|
|
4
4
|
import { Vec2 } from "../math/Vec2";
|
|
5
5
|
import { Vec3 } from "../math/Vec3";
|
|
6
|
-
import { Camera } from "../camera/Camera";
|
|
7
6
|
interface ISimpleNavigationParams extends IControlParams {
|
|
8
7
|
speed?: number;
|
|
9
8
|
}
|
|
@@ -21,13 +20,10 @@ export declare class SimpleNavigation extends Control {
|
|
|
21
20
|
protected _grabbedScreenPoint: Vec2;
|
|
22
21
|
protected _eye0: Vec3;
|
|
23
22
|
protected _wheelPos: Vec3;
|
|
24
|
-
protected _savedFocusDistance: number;
|
|
25
|
-
protected _savedEye: Vec3;
|
|
26
23
|
constructor(options?: ISimpleNavigationParams);
|
|
27
24
|
oninit(): void;
|
|
28
25
|
onactivate(): void;
|
|
29
26
|
ondeactivate(): void;
|
|
30
|
-
protected _onProjChanged: (cam: Camera) => void;
|
|
31
27
|
protected _onMouseLeftButtonDown: (e: IMouseState) => void;
|
|
32
28
|
protected _onMouseLeftButtonUp: (e: IMouseState) => void;
|
|
33
29
|
protected _onMouseLeftButtonHold: (e: IMouseState) => void;
|