aboutsummaryrefslogtreecommitdiff
path: root/src/pen-gestures/GestureTypes.ts
blob: d8656258023d13127ce43fe4e97fde81850df748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export enum Gestures {
    Line = 'line',
    Stroke = 'stroke',
    Scribble = 'scribble',
    Text = 'text',
    Triangle = 'triangle',
    Circle = 'circle',
    Rectangle = 'rectangle',
    Arrow = 'arrow',
}

// Defines a point in an ink as a pair of x- and y-coordinates.
export interface PointData {
    X: number;
    Y: number;
}