Browse Source

Issue #2: biomatrix translation reverted back

cycle20 2 years ago
parent
commit
a5eb990cbd
1 changed files with 6 additions and 7 deletions
  1. 6 7
      src/extensions/tmdet/transformation.ts

+ 6 - 7
src/extensions/tmdet/transformation.ts

@@ -81,13 +81,12 @@ export function transformationForStateTransform(tmatrix: PDBTMTransformationMatr
                          0,              0,              0, 1
         ], 0
     );
-    // Mat4.setTranslation(mx, Vec3.create(
-    //     tmatrix.rowx.t,
-    //     tmatrix.rowy.t,
-    //     tmatrix.rowz.t
-    // ));
-    console.log('is rot and trans?\n', Mat4.isRotationAndTranslation(mx));
-    console.log('with translation\n', Mat4.makeTable(mx));
+    Mat4.setTranslation(mx, Vec3.create(
+        tmatrix.rowx.t,
+        tmatrix.rowy.t,
+        tmatrix.rowz.t
+    ));
+    console.log('MAT4\n', Mat4.makeTable(mx));
     return mx;
 }