diff --git a/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.html b/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..ad8aca3171ea86ce9172a856a9ea3bd192f4995f
--- /dev/null
+++ b/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.html
@@ -0,0 +1,40 @@
+<button mat-menu-item [mat-menu-trigger-for]="perspectiveOrientationMenu">
+    Change orientation to
+</button>
+
+<mat-menu #perspectiveOrientationMenu="matMenu">
+
+    <div class="d-flex align-items-center text-light">
+        <button mat-button color="basic" class="flex-grow-1 text-left"
+                (click)="set3DViewPoint('coronal', 'first')">
+            Coronal view
+        </button>
+        <button class="flex-grow-0" mat-button
+                (click)="set3DViewPoint('coronal', 'second')">
+            <i class="fas fa-arrows-alt-h"></i>
+        </button>
+    </div>
+
+    <div class="d-flex align-items-center text-light"> <!--mat-menu-item-->
+        <button mat-button color="basic" class="flex-grow-1 text-left"
+                (click)="set3DViewPoint('sagittal', 'first')">
+            Sagittal view
+        </button>
+        <button class="flex-grow-0" mat-button
+                (click)="set3DViewPoint('sagittal', 'second')">
+            <i class="fas fa-arrows-alt-h"></i>
+        </button>
+    </div>
+
+    <div class="d-flex align-items-center text-light"> <!--mat-menu-item-->
+        <button mat-button color="basic" class="flex-grow-1 text-left"
+                (click)="set3DViewPoint('axial', 'first')">
+            Axial view
+        </button>
+        <button class="flex-grow-0" mat-button
+                (click)="set3DViewPoint('axial', 'second')">
+            <i class="fas fa-arrows-alt-h"></i>
+        </button>
+    </div>
+
+</mat-menu>
diff --git a/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.sass b/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.sass
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.spec.ts b/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..78767efbba98feeb765a7250bf62e5ad9780180b
--- /dev/null
+++ b/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ChangePerspectiveOrientationComponent } from './changePerspectiveOrientation.component';
+
+describe('ChangePerspectiveOrientationComponent', () => {
+  let component: ChangePerspectiveOrientationComponent;
+  let fixture: ComponentFixture<ChangePerspectiveOrientationComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ ChangePerspectiveOrientationComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(ChangePerspectiveOrientationComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.ts b/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..dbe8a4189dcb371faa65c66334b15391ac6640b8
--- /dev/null
+++ b/src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component.ts
@@ -0,0 +1,36 @@
+import { Component, OnInit } from '@angular/core';
+import {viewerStateChangeNavigation} from "src/services/state/viewerState/actions";
+import {Store} from "@ngrx/store";
+
+@Component({
+  selector: 'app-change-perspective-orientation',
+  templateUrl: './changePerspectiveOrientation.component.html',
+  styleUrls: ['./changePerspectiveOrientation.component.sass']
+})
+export class ChangePerspectiveOrientationComponent implements OnInit {
+
+  private viewOrientations = {
+    coronal: [[0,-1,1,0], [-1,0,0,1]],
+    sagittal: [[-1,-1,1,1], [-1,1,-1,1]],
+    axial: [[0,0,1,0], [0,0,1,0]]
+  }
+
+  constructor(private store$: Store<any>,) { }
+
+  ngOnInit(): void {
+  }
+
+  public set3DViewPoint(plane: 'coronal' | 'sagittal' | 'axial', view: 'first' | 'second') {
+
+    const orientation = this.viewOrientations[plane][view === 'first'? 0 : 1]
+
+    this.store$.dispatch(
+      viewerStateChangeNavigation({
+        navigation: {
+          perspectiveOrientation: orientation,
+        }
+      })
+    )
+  }
+
+}
diff --git a/src/viewerModule/nehuba/viewerCtrl/module.ts b/src/viewerModule/nehuba/viewerCtrl/module.ts
index dbf9ed121ca150593b2c3ac08bd0f5e91bcb750e..7be1186474bddac9d4c33772d28fb682bfa61794 100644
--- a/src/viewerModule/nehuba/viewerCtrl/module.ts
+++ b/src/viewerModule/nehuba/viewerCtrl/module.ts
@@ -5,6 +5,7 @@ import { ComponentsModule } from "src/components";
 import { AngularMaterialModule } from "src/sharedModules";
 import { UtilModule } from "src/util";
 import { ViewerCtrlCmp } from "./viewerCtrlCmp/viewerCtrlCmp.component";
+import {ChangePerspectiveOrientationComponent} from "src/viewerModule/nehuba/viewerCtrl/change-perspective-orientation/changePerspectiveOrientation.component";
 
 @NgModule({
   imports: [
@@ -17,6 +18,7 @@ import { ViewerCtrlCmp } from "./viewerCtrlCmp/viewerCtrlCmp.component";
   ],
   declarations: [
     ViewerCtrlCmp,
+    ChangePerspectiveOrientationComponent
   ],
   exports: [
     ViewerCtrlCmp
diff --git a/src/viewerModule/nehuba/viewerCtrl/viewerCtrlCmp/viewerCtrlCmp.template.html b/src/viewerModule/nehuba/viewerCtrl/viewerCtrlCmp/viewerCtrlCmp.template.html
index a1a1507eedbdcf739c18c24f77642fb397d6df84..60a004bbd682af81cecb8244ce2207d42a85c55e 100644
--- a/src/viewerModule/nehuba/viewerCtrl/viewerCtrlCmp/viewerCtrlCmp.template.html
+++ b/src/viewerModule/nehuba/viewerCtrl/viewerCtrlCmp/viewerCtrlCmp.template.html
@@ -41,3 +41,4 @@
   </form>
 </ng-container>
 
+<app-change-perspective-orientation></app-change-perspective-orientation>