Browse Source

Bug #190: fixed regionDescriptors issue

cycle20 3 years ago
parent
commit
1395d0c60f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/apps/viewer/index.ts

+ 1 - 1
src/apps/viewer/index.ts

@@ -78,7 +78,7 @@ export class Viewer {
 
     async loadWithUNITMPMembraneRepresentation(url: string, regionDescriptors: any) {
         const membraneNormal: Vec3 = Vec3.fromObj(
-            (window as any) ['regionDescriptors']['membrane-normal'] as any
+            regionDescriptors['membrane-normal']
         );
         const membrane: MembraneOrientation = {
             planePoint1: Vec3.fromArray(Vec3.zero(), membraneNormal, 0),