|
@@ -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();
|