aboutsummaryrefslogtreecommitdiff
path: root/src/pen-gestures/GestureTypes.ts
blob: 10f9ba6d0fcaabf0039a88e340065ea98d643962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export enum Gestures {
    Line = 'line',
    Stroke = 'stroke',
    Text = 'text',
    Triangle = 'triangle',
    Circle = 'circle',
    Rectangle = 'rectangle',
    Arrow = 'arrow',
    RightAngle = 'rightangle',
}
// Defines a point in an ink as a pair of x- and y-coordinates.
export interface PointData {
    X: number;
    Y: number;
}