itk-viewer-reference-ui
Version:
Reference UI for itk-viewer
43 lines (33 loc) • 1.04 kB
JavaScript
import createMainInterface from './createMainInterface'
import toggleFullscreen from './toggleFullscreen'
import toggleRotate from './toggleRotate'
import toggleAnnotations from './toggleAnnotations'
import toggleAxes from './toggleAxes'
import toggleBackgroundColor from './toggleBackgroundColor'
import viewModeXPlane from './viewModeXPlane'
import viewModeYPlane from './viewModeYPlane'
import viewModeZPlane from './viewModeZPlane'
import viewModeVolume from './viewModeVolume'
import applySlicingPlanes from './applySlicingPlanes'
import applyXSlice from './applyXSlice'
import applyYSlice from './applyYSlice'
import applyZSlice from './applyZSlice'
const mainUIMachineOptions = {
actions: {
createMainInterface,
toggleAnnotations,
toggleFullscreen,
toggleRotate,
toggleAxes,
toggleBackgroundColor,
viewModeXPlane,
viewModeYPlane,
viewModeZPlane,
viewModeVolume,
applySlicingPlanes,
applyXSlice,
applyYSlice,
applyZSlice,
},
}
export default mainUIMachineOptions