diff --git a/src/icons/svg/elliptical.svg b/src/icons/svg/elliptical.svg index c02d20cc..4cbcf68a 100644 --- a/src/icons/svg/elliptical.svg +++ b/src/icons/svg/elliptical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/icons/svg/fixedRadiusCircle.svg b/src/icons/svg/fixedRadiusCircle.svg new file mode 100644 index 00000000..83b3bae1 --- /dev/null +++ b/src/icons/svg/fixedRadiusCircle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/svg/oval.svg b/src/icons/svg/oval.svg index 4cbcf68a..7fffca83 100644 --- a/src/icons/svg/oval.svg +++ b/src/icons/svg/oval.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/MPRViewport.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/MPRViewport.vue index 011693cf..242f58c0 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/MPRViewport.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/MPRViewport.vue @@ -16,6 +16,7 @@
{{ series.Description }}
+
@@ -269,6 +270,21 @@ export default { } }, methods: { + getColor() { + let color = '#000' + switch (this.series.orientation) { + case 'AXIAL': + color = '#00f' + break; + case 'CORONAL': + color = '#f00' + break; + case 'SAGITTAL': + color = '#0f0' + break; + } + return color + }, initViewport() { this.element = this.$refs['viewport-volume'] const resizeObserver = new ResizeObserver(() => { @@ -819,6 +835,13 @@ export default { }