|
@@ -159,17 +159,11 @@ export async function calculate(runtime: RuntimeContext, structure: Structure, p
|
|
|
const membrane: MembraneOrientation = JSON.parse(
|
|
|
window.localStorage.getItem(MEMBRANE_STORAGE_KEY)!
|
|
|
);
|
|
|
- window.console.debug('membrane object from localStorage:', membrane);
|
|
|
-
|
|
|
- window.console.debug('normal vector:', membrane.normalVector);
|
|
|
- window.console.debug('plain point 1:', membrane.planePoint1);
|
|
|
- window.console.debug('plain point 2:', membrane.planePoint2);
|
|
|
|
|
|
v3sub(normalVector, membrane.planePoint1, membrane.planePoint2);
|
|
|
v3normalize(normalVector, normalVector);
|
|
|
v3add(center, membrane.planePoint1, membrane.planePoint2);
|
|
|
v3scale(center, center, 0.5);
|
|
|
- window.console.debug('calculated center:', center);
|
|
|
|
|
|
const candidate: MembraneCandidate = {
|
|
|
normalVector: membrane.normalVector,
|
|
@@ -179,14 +173,6 @@ export async function calculate(runtime: RuntimeContext, structure: Structure, p
|
|
|
};
|
|
|
const extent = adjustExtent(ctx, candidate, center);
|
|
|
|
|
|
- window.console.debug('result of "tmdet / calculate":', {
|
|
|
- planePoint1: membrane.planePoint1,
|
|
|
- planePoint2: membrane.planePoint2,
|
|
|
- normalVector,
|
|
|
- centroid: center,
|
|
|
- radius: extent
|
|
|
- });
|
|
|
-
|
|
|
return {
|
|
|
planePoint1: membrane.planePoint1,
|
|
|
planePoint2: membrane.planePoint2,
|