Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ObliqueView): add a new Oblique View using vtkImageResliceMapper
Browse files Browse the repository at this point in the history
jadh4v committed Jul 17, 2023
1 parent b0033fb commit 1a3012d
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
@@ -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';
@@ -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({
Loading

0 comments on commit 1a3012d

Please sign in to comment.