diff options
| author | bobzel <zzzman@gmail.com> | 2024-05-03 10:55:33 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-05-03 10:55:33 -0400 |
| commit | f927a585c75a20629379bcb34d1483c0ca9d8db9 (patch) | |
| tree | f070e9e64ecaf251e6708b8ce4d722f121a6d039 /src/pen-gestures/GestureTypes.ts | |
| parent | 723c8b33ade753764d1d02b130c189fb65e20425 (diff) | |
| parent | 9b424c94d7a89950e9cf3f72e684bd15a61e87ae (diff) | |
merged with new version of master
Diffstat (limited to 'src/pen-gestures/GestureTypes.ts')
| -rw-r--r-- | src/pen-gestures/GestureTypes.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pen-gestures/GestureTypes.ts b/src/pen-gestures/GestureTypes.ts new file mode 100644 index 000000000..d86562580 --- /dev/null +++ b/src/pen-gestures/GestureTypes.ts @@ -0,0 +1,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; +} |
