|
@@ -21,7 +21,7 @@ export function TmDetColorTheme(
|
|
return {
|
|
return {
|
|
factory: TmDetColorTheme,
|
|
factory: TmDetColorTheme,
|
|
granularity: 'group', //'residue' as any,
|
|
granularity: 'group', //'residue' as any,
|
|
- color: getColor,
|
|
|
|
|
|
+ color: (location: Location) => getColor(location, props),
|
|
props: props,
|
|
props: props,
|
|
description: 'TMDet...',
|
|
description: 'TMDet...',
|
|
};
|
|
};
|
|
@@ -34,9 +34,10 @@ const ColorMap = [
|
|
Color(0xffff00)
|
|
Color(0xffff00)
|
|
];
|
|
];
|
|
|
|
|
|
-function getColor(location: Location): Color {
|
|
|
|
|
|
+function getColor(location: Location, props: any): Color {
|
|
let color = DefaultResidueColor;
|
|
let color = DefaultResidueColor;
|
|
|
|
|
|
|
|
+ console.log('getColor params:', props);
|
|
if (StructureElement.Location.is(location) && Unit.isAtomic(location.unit)) {
|
|
if (StructureElement.Location.is(location) && Unit.isAtomic(location.unit)) {
|
|
const compId = StructureElement.residueIndex(location) % 3;
|
|
const compId = StructureElement.residueIndex(location) % 3;
|
|
color = ColorMap[compId]
|
|
color = ColorMap[compId]
|