js-draw
Version:
Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.
15 lines (14 loc) • 537 B
TypeScript
import type Editor from '../Editor';
import { Point2 } from '@js-draw/math';
/**
* Creates two pointers and sends the touch {@link InputEvtType.PointerDownEvt}s for them.
*
* Returns an object that allows continuing or ending the gesture.
*
* `initialRotation` should be in radians.
*/
declare const startPinchGesture: (editor: Editor, center: Point2, initialDistance: number, initialRotation: number) => {
update(center: Point2, distance: number, rotation: number): void;
end(): void;
};
export default startPinchGesture;