Interface InputFlowControl

The interface for the input flow control. It should at least have user input handlers for pan, zoom and rotation.

interface InputFlowControl {
    notifyPanInput(diff: Point): void;
    notifyRotationInput(deltaRotation: number): void;
    notifyZoomInput(deltaZoomAmount: number, anchorPoint: Point): void;
}

Implemented by

Methods