|
@@ -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;
|
|
|
}
|
|
|
|