@@ -7,7 +7,6 @@ import VTKMPRPaintingExample from './VTKMPRPaintingExample.js';
7
7
import VTKCornerstonePaintingSyncExample from './VTKCornerstonePaintingSyncExample.js' ;
8
8
import VTKLoadImageDataExample from './VTKLoadImageDataExample.js' ;
9
9
import VTKCrosshairsExample from './VTKCrosshairsExample.js' ;
10
- import VTK4UpExample from './VTK4UpExample.js' ;
11
10
import VTKMPRRotateExample from './VTKMPRRotateExample.js' ;
12
11
import VTKVolumeRenderingExample from './VTKVolumeRenderingExample.js' ;
13
12
@@ -52,7 +51,8 @@ function Index() {
52
51
{
53
52
title : 'Volume Rendering' ,
54
53
url : '/volume-rendering' ,
55
- text : 'Demonstrates how to perform volume rendering for a CT volume.' ,
54
+ text :
55
+ 'Demonstrates how to perform volume rendering for a CT volume.' ,
56
56
} ,
57
57
{
58
58
title : 'Image Segmentation via Paint Widget' ,
@@ -72,11 +72,6 @@ function Index() {
72
72
text :
73
73
'Demonstrates how to set up the Crosshairs interactor style and SVG Widget' ,
74
74
} ,
75
- {
76
- title : 'MPR 4UP Example' ,
77
- url : '/4up' ,
78
- text : 'Demonstrates a 4UP view' ,
79
- } ,
80
75
{
81
76
title : 'MPR Rotate Example' ,
82
77
url : '/rotate' ,
@@ -90,7 +85,7 @@ function Index() {
90
85
} ,
91
86
] ;
92
87
93
- const exampleComponents = examples . map ( ( e ) => {
88
+ const exampleComponents = examples . map ( e => {
94
89
return < ExampleEntry key = { e . title } { ...e } /> ;
95
90
} ) ;
96
91
@@ -148,10 +143,8 @@ function AppRouter() {
148
143
const synced = ( ) =>
149
144
Example ( { children : < VTKCornerstonePaintingSyncExample /> } ) ;
150
145
const crosshairs = ( ) => Example ( { children : < VTKCrosshairsExample /> } ) ;
151
- const fourUp = ( ) => Example ( { children : < VTK4UpExample /> } ) ;
152
146
const rotateMPR = ( ) => Example ( { children : < VTKMPRRotateExample /> } ) ;
153
- const volumeRendering = ( ) =>
154
- Example ( { children : < VTKVolumeRenderingExample /> } ) ;
147
+ const volumeRendering = ( ) => Example ( { children : < VTKVolumeRenderingExample /> } ) ;
155
148
156
149
return (
157
150
< Router >
@@ -162,7 +155,6 @@ function AppRouter() {
162
155
< Route exact path = "/painting" render = { painting } />
163
156
< Route exact path = "/cornerstone-sync-painting" render = { synced } />
164
157
< Route exact path = "/crosshairs" render = { crosshairs } />
165
- < Route exact path = "/4up" render = { fourUp } />
166
158
< Route exact path = "/rotate" render = { rotateMPR } />
167
159
< Route exact path = "/volume-rendering" render = { volumeRendering } />
168
160
< Route exact path = "/cornerstone-load-image-data" render = { loadImage } />
0 commit comments