| import { IColorScheme } from "./Colors/ColorInterfaces"; |
|
|
| export enum HydrogenDisplayType { |
| All = "all", |
| Polar = "polar", |
| None = "none", |
| } |
|
|
| export interface ISelAndStyle { |
| selection?: any; |
| sphere?: IColorScheme; |
| stick?: IColorScheme; |
| line?: IColorScheme; |
| cartoon?: IColorScheme; |
| surface?: IColorScheme; |
| moleculeId?: string; |
| hydrogens?: HydrogenDisplayType; |
| } |
|
|
| export enum AtomsRepresentation { |
| Hidden = "atoms-hidden", |
| Line = "line", |
| Stick = "stick", |
| Sphere = "sphere", |
| } |
|
|
| export enum BackBoneRepresentation { |
| Hidden = "backbone-hidden", |
| Cartoon = "cartoon", |
| } |
|
|
| export enum SurfaceRepresentation { |
| Hidden = "surface-hidden", |
| Surface = "surface", |
| } |
|
|
| export type Representation = |
| | AtomsRepresentation |
| | BackBoneRepresentation |
| | SurfaceRepresentation; |
|
|