/** * Copyright (c) 2019-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { Representation, RepresentationParamsGetter, RepresentationContext } from '../../representation.js'; import { StructureElement } from '../../../mol-model/structure.js'; export interface OrientationData { locis: StructureElement.Loci[]; } export declare const OrientationParams: { visuals: PD.MultiSelect<"box" | "axes" | "ellipsoid">; color: PD.Color; scaleFactor: PD.Numeric; radiusScale: PD.Numeric; doubleSided: PD.BooleanParam; flipSided: PD.BooleanParam; flatShaded: PD.BooleanParam; ignoreLight: 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; }>>; 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; }; export type OrientationParams = typeof OrientationParams; export type OrientationProps = PD.Values; export type OrientationRepresentation = Representation; export declare function OrientationRepresentation(ctx: RepresentationContext, getParams: RepresentationParamsGetter): OrientationRepresentation;