aboutsummaryrefslogtreecommitdiff
path: root/src/pen-gestures/GestureTypes.ts
blob: 5a8e9bd977ccb148d7b06a6ebecf9c6cb2db62ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}