Skip to content

Commit 1e1e57b

Browse files
committed
feat(LineWidget): Implementation of vtkLineWidget
1 parent 16c6dfe commit 1e1e57b

File tree

8 files changed

+952
-2
lines changed

8 files changed

+952
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
export const State = {
2+
OUTSIDE: 0,
3+
ONP1: 1,
4+
ONP2: 2,
5+
TRANSLATINGP1: 3,
6+
TRANSLATINGP2: 4,
7+
ONLINE: 5,
8+
SCALING: 6,
9+
};
10+
11+
export const Restrict = {
12+
NONE: 0,
13+
X: 1,
14+
Y: 2,
15+
Z: 3,
16+
};
17+
18+
export default {
19+
State,
20+
Restrict,
21+
};

0 commit comments

Comments
 (0)