瀏覽代碼

Issue #2: Can we copy colors of parent asymmetry?

cycle20 2 年之前
父節點
當前提交
3ce3cf1aa3
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      src/extensions/tmdet/transformation.ts

+ 4 - 3
src/extensions/tmdet/transformation.ts

@@ -1,6 +1,6 @@
 import { MolScriptBuilder as MS } from '../../mol-script/language/builder';
 import { PluginUIContext } from '../../mol-plugin-ui/context';
-import { Mat4, Vec3, Vec4 } from '../../mol-math/linear-algebra';
+import { Mat4, Vec3 } from '../../mol-math/linear-algebra';
 import { PDBTMDescriptor, PDBTMTransformationMatrix, PMS } from './types';
 import { createStructureRepresentationParams } from '../../mol-plugin-state/helpers/structure-representation-params';
 import { StateTransforms } from '../../mol-plugin-state/transforms';
@@ -56,8 +56,9 @@ export async function applyTransformations(ctx: PluginUIContext, pdbtmDescriptor
             StateTransforms.Representation.StructureRepresentation3D,
             createStructureRepresentationParams(plugin, update.selector.data, {
                 type: 'cartoon',
-                color: 'uniform',
-                colorParams: { value: color }
+                color: 'chain-id',
+                // TODO: Can we copy colors of parent asymmetry?
+                // colorParams: { value: color }
             })
         );
     update.commit();