/** * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Loci } from '../../../mol-model/loci.js'; import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { Representation, RepresentationParamsGetter, RepresentationContext } from '../../representation.js'; export interface AngleData { triples: Loci.Bundle<3>[]; } export declare const AngleParams: { visuals: PD.MultiSelect<"text" | "vectors" | "sector" | "arc">; borderWidth: PD.Numeric; customText: PD.Text; 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<"bottom-left" | "bottom-center" | "bottom-right" | "middle-left" | "middle-center" | "middle-right" | "top-left" | "top-center" | "top-right">; fontFamily: PD.Select; fontQuality: PD.Select; fontStyle: PD.Select; fontVariant: PD.Select; fontWeight: PD.Select; alpha: PD.Numeric; quality: PD.Select<"auto" | "medium" | "high" | "low" | "custom" | "highest" | "higher" | "lower" | "lowest">; material: PD.Group>; clip: PD.Group[]; }>>; emissive: PD.Numeric; density: PD.Numeric; instanceGranularity: PD.BooleanParam; lod: PD.Vec3; cellSize: PD.Numeric; batchSize: PD.Numeric; ignoreLight: PD.BooleanParam; sectorOpacity: PD.Numeric; color: PD.Color; arcScale: PD.Numeric; doubleSided: PD.BooleanParam; flipSided: PD.BooleanParam; flatShaded: PD.BooleanParam; celShaded: PD.BooleanParam; xrayShaded: PD.Select; transparentBackfaces: PD.Select<"off" | "on" | "opaque">; bumpFrequency: PD.Numeric; bumpAmplitude: PD.Numeric; interior: PD.Group; substanceStrength: number; }>>; lineSizeAttenuation: PD.BooleanParam; linesSize: PD.Numeric; dashLength: PD.Numeric; }; export type AngleParams = typeof AngleParams; export type AngleProps = PD.Values; export type AngleRepresentation = Representation; export declare function AngleRepresentation(ctx: RepresentationContext, getParams: RepresentationParamsGetter): AngleRepresentation;