UNPKG

paraview-glance

Version:

Web application for Visualizing Scientific and Medical datasets

13 lines (11 loc) 292 B
import MatrixView from 'paraview-glance/src/components/controls/Information/MatrixView'; export default { name: 'ImageDataInformation', props: ['dataset'], components: { MatrixView, }, methods: { showVect: (vect, d = ', ') => vect.map((c) => c.toFixed(2)).join(d), }, };