|
@@ -45,15 +45,15 @@ export namespace DebugUtil {
|
|
|
|
|
|
export function transformVector(v: Vec3, matrix: Mat4): Vec3 {
|
|
export function transformVector(v: Vec3, matrix: Mat4): Vec3 {
|
|
const result = Vec3.transformMat4(Vec3(), v, matrix);
|
|
const result = Vec3.transformMat4(Vec3(), v, matrix);
|
|
- console.log("transformVector: Input v & matrix:", v, Mat4.makeTable(matrix));
|
|
|
|
- console.log("transformVector: Result vector:", result);
|
|
|
|
|
|
+ log("transformVector: Input v & matrix:", v, Mat4.makeTable(matrix));
|
|
|
|
+ log("transformVector: Result vector:", result);
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
export function descriptorMxToMat4(matrix: PDBTMTransformationMatrix): Mat4 {
|
|
export function descriptorMxToMat4(matrix: PDBTMTransformationMatrix): Mat4 {
|
|
- console.log("descriptorMxToMat4: Input:", matrix);
|
|
|
|
|
|
+ log("descriptorMxToMat4: Input:", matrix);
|
|
const result = transformationForStateTransform(matrix);
|
|
const result = transformationForStateTransform(matrix);
|
|
- console.log("descriptorMxToMat4: Result:", result);
|
|
|
|
|
|
+ log("descriptorMxToMat4: Result:", result);
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -83,7 +83,7 @@ export namespace DebugUtil {
|
|
// in case of mmCIF format
|
|
// in case of mmCIF format
|
|
export function dumpAtomProperties(authAtomId: number) {
|
|
export function dumpAtomProperties(authAtomId: number) {
|
|
const model: Model|undefined = getModelOfFirstStructure();
|
|
const model: Model|undefined = getModelOfFirstStructure();
|
|
- console.log("First model:", model);
|
|
|
|
|
|
+ log("First model:", model);
|
|
if(!model) {
|
|
if(!model) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -94,7 +94,7 @@ export namespace DebugUtil {
|
|
const atom_site = db.atom_site;
|
|
const atom_site = db.atom_site;
|
|
for (let index = 0; index < rowCount; index++) {
|
|
for (let index = 0; index < rowCount; index++) {
|
|
if (conformation.atomId.value(index) == authAtomId) {
|
|
if (conformation.atomId.value(index) == authAtomId) {
|
|
- console.log("Model Atom Conformation:", {
|
|
|
|
|
|
+ log("Model Atom Conformation:", {
|
|
atomIdParameter: authAtomId,
|
|
atomIdParameter: authAtomId,
|
|
atomId: conformation.atomId.value(index),
|
|
atomId: conformation.atomId.value(index),
|
|
coords: [
|
|
coords: [
|
|
@@ -105,7 +105,7 @@ export namespace DebugUtil {
|
|
xyzDefined: conformation.xyzDefined
|
|
xyzDefined: conformation.xyzDefined
|
|
});
|
|
});
|
|
|
|
|
|
- console.log("Atom Source Data (mmCIF database):", {
|
|
|
|
|
|
+ log("Atom Source Data (mmCIF database):", {
|
|
authId: atom_site.auth_atom_id.value(index),
|
|
authId: atom_site.auth_atom_id.value(index),
|
|
compId: atom_site.auth_comp_id.value(index),
|
|
compId: atom_site.auth_comp_id.value(index),
|
|
authAsymId: atom_site.auth_asym_id.value(index),
|
|
authAsymId: atom_site.auth_asym_id.value(index),
|
|
@@ -126,7 +126,7 @@ export namespace DebugUtil {
|
|
getCurrentHierarchy().structures.forEach(struct => {
|
|
getCurrentHierarchy().structures.forEach(struct => {
|
|
let cIndex = 0;
|
|
let cIndex = 0;
|
|
struct.components.forEach(component => {
|
|
struct.components.forEach(component => {
|
|
- console.log(`struct: ${sIndex}; component: ${cIndex}`, component.cell.cache);
|
|
|
|
|
|
+ log(`struct: ${sIndex}; component: ${cIndex}`, component.cell.cache);
|
|
cIndex++;
|
|
cIndex++;
|
|
});
|
|
});
|
|
sIndex++;
|
|
sIndex++;
|