molstar
Version:
A comprehensive macromolecular library.
54 lines (53 loc) • 2.56 kB
TypeScript
/**
* Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { Loci } from '../../../mol-model/loci';
import { ParamDefinition as PD } from '../../../mol-util/param-definition';
import { Representation, RepresentationParamsGetter, RepresentationContext } from '../../representation';
export interface DihedralData {
quads: Loci.Bundle<4>[];
}
export declare const DihedralParams: {
visuals: PD.MultiSelect<"text" | "vectors" | "sector" | "arc" | "extenders" | "arms" | "connector">;
borderWidth: PD.Numeric;
customText: PD.Text<string>;
textColor: PD.Color;
textSize: PD.Numeric;
sizeFactor: PD.Numeric;
borderColor: PD.Color;
offsetX: PD.Numeric;
offsetY: PD.Numeric;
offsetZ: PD.Numeric;
background: PD.BooleanParam;
backgroundMargin: PD.Numeric;
backgroundColor: PD.Color;
backgroundOpacity: PD.Numeric;
tether: PD.BooleanParam;
tetherLength: PD.Numeric;
tetherBaseWidth: PD.Numeric;
attachment: PD.Select<"middle-center" | "bottom-left" | "bottom-center" | "bottom-right" | "middle-left" | "middle-right" | "top-left" | "top-center" | "top-right">;
fontFamily: PD.Select<import("../../../mol-geo/geometry/text/font-atlas").FontFamily>;
fontQuality: PD.Select<number>;
fontStyle: PD.Select<import("../../../mol-geo/geometry/text/font-atlas").FontStyle>;
fontVariant: PD.Select<import("../../../mol-geo/geometry/text/font-atlas").FontVariant>;
fontWeight: PD.Select<import("../../../mol-geo/geometry/text/font-atlas").FontWeight>;
alpha: PD.Numeric;
quality: PD.Select<"custom" | "auto" | "highest" | "higher" | "high" | "medium" | "low" | "lower" | "lowest">;
ignoreLight: PD.BooleanParam;
sectorOpacity: PD.Numeric;
color: PD.Color;
arcScale: PD.Numeric;
doubleSided: PD.BooleanParam;
flipSided: PD.BooleanParam;
flatShaded: PD.BooleanParam;
xrayShaded: PD.BooleanParam;
lineSizeAttenuation: PD.BooleanParam;
linesSize: PD.Numeric;
dashLength: PD.Numeric;
};
export declare type DihedralParams = typeof DihedralParams;
export declare type DihedralProps = PD.Values<DihedralParams>;
export declare type DihedralRepresentation = Representation<DihedralData, DihedralParams>;
export declare function DihedralRepresentation(ctx: RepresentationContext, getParams: RepresentationParamsGetter<DihedralData, DihedralParams>): DihedralRepresentation;