|
@@ -25,6 +25,8 @@ import { ComponentsType, PDBTMDescriptor, PMS } from './types';
|
|
import { registerTmDetSymmetry } from './symmetry';
|
|
import { registerTmDetSymmetry } from './symmetry';
|
|
import { StripedResidues } from './coloring';
|
|
import { StripedResidues } from './coloring';
|
|
import { TmDetColorThemeProvider } from './tmdet-color-theme';
|
|
import { TmDetColorThemeProvider } from './tmdet-color-theme';
|
|
|
|
+import { storeCameraSnapshot } from './camera';
|
|
|
|
+// import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from './camera';
|
|
|
|
|
|
const Tag = MembraneOrientation.Tag;
|
|
const Tag = MembraneOrientation.Tag;
|
|
const TMDET_MEMBRANE_ORIENTATION = 'Membrane Orientation';
|
|
const TMDET_MEMBRANE_ORIENTATION = 'Membrane Orientation';
|
|
@@ -112,6 +114,8 @@ export const isTransmembrane = StructureSelectionQuery('Residues Embedded in Mem
|
|
export let membraneOrientation: MembraneOrientation;
|
|
export let membraneOrientation: MembraneOrientation;
|
|
|
|
|
|
export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIContext, params: any) {
|
|
export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIContext, params: any) {
|
|
|
|
+ storeCameraSnapshot(plugin);
|
|
|
|
+
|
|
const pdbtmDescriptor = await downloadRegionDescriptor(plugin, params);
|
|
const pdbtmDescriptor = await downloadRegionDescriptor(plugin, params);
|
|
|
|
|
|
membraneOrientation = createMembraneOrientation(pdbtmDescriptor);
|
|
membraneOrientation = createMembraneOrientation(pdbtmDescriptor);
|
|
@@ -121,10 +125,11 @@ export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIConte
|
|
// cartoon, colors etc.
|
|
// cartoon, colors etc.
|
|
await createStructureRepresentation(plugin, pdbtmDescriptor);
|
|
await createStructureRepresentation(plugin, pdbtmDescriptor);
|
|
|
|
|
|
|
|
+ //rotateCamera(plugin);
|
|
//
|
|
//
|
|
// reset the camera because the membranes render 1st and the structure might not be fully visible
|
|
// reset the camera because the membranes render 1st and the structure might not be fully visible
|
|
//
|
|
//
|
|
- requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset());
|
|
|
|
|
|
+ //requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset());
|
|
}
|
|
}
|
|
|
|
|
|
async function downloadRegionDescriptor(plugin: PluginUIContext, params: any): Promise<any> {
|
|
async function downloadRegionDescriptor(plugin: PluginUIContext, params: any): Promise<any> {
|