Skip to content

Commit

Permalink
feat(ObliqueView): add a new Oblique View using vtkImageResliceMapper
Browse files Browse the repository at this point in the history
  • Loading branch information
jadh4v committed Jul 19, 2023
1 parent 7b2a778 commit 113134b
Show file tree
Hide file tree
Showing 6 changed files with 867 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/components/LayoutGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import { Component, computed, defineComponent, PropType, toRefs } from 'vue';
import { storeToRefs } from 'pinia';
import VtkTwoView from './VtkTwoView.vue';
import VtkObliqueView from './VtkObliqueView.vue';
import VtkThreeView from './VtkThreeView.vue';
import { Layout, LayoutDirection } from '../types/layout';
import { useViewStore } from '../store/views';
Expand All @@ -26,6 +27,7 @@ import { ViewType } from '../types/views';
const TYPE_TO_COMPONENT: Record<ViewType, Component> = {
'2D': VtkTwoView,
'3D': VtkThreeView,
'Oblique': VtkObliqueView,
};
export default defineComponent({
Expand Down
Loading

0 comments on commit 113134b

Please sign in to comment.