Skip to content

Commit

Permalink
feat(LineWidget): Implementation of vtkLineWidget
Browse files Browse the repository at this point in the history
  • Loading branch information
laurennlam committed Nov 29, 2017
1 parent 16c6dfe commit 1e1e57b
Show file tree
Hide file tree
Showing 8 changed files with 952 additions and 2 deletions.
21 changes: 21 additions & 0 deletions Sources/Interaction/Widgets/LineRepresentation/Constants.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export const State = {
OUTSIDE: 0,
ONP1: 1,
ONP2: 2,
TRANSLATINGP1: 3,
TRANSLATINGP2: 4,
ONLINE: 5,
SCALING: 6,
};

export const Restrict = {
NONE: 0,
X: 1,
Y: 2,
Z: 3,
};

export default {
State,
Restrict,
};
Loading

0 comments on commit 1e1e57b

Please sign in to comment.