/** * Copyright (c) 2018-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author Gianluca Tomasello */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { UnitsVisual } from '../units-visual.js'; export declare const PolymerTraceMeshParams: { sizeFactor: PD.Numeric; aspectRatio: PD.Numeric; arrowFactor: PD.Numeric; tubularHelices: PD.BooleanParam; roundCap: PD.BooleanParam; helixProfile: PD.Select<"square" | "elliptical" | "rounded">; nucleicProfile: PD.Select<"square" | "elliptical" | "rounded">; detail: PD.Numeric; linearSegments: PD.Numeric; radialSegments: PD.Numeric; }; export declare const DefaultPolymerTraceMeshProps: PD.Values<{ sizeFactor: PD.Numeric; aspectRatio: PD.Numeric; arrowFactor: PD.Numeric; tubularHelices: PD.BooleanParam; roundCap: PD.BooleanParam; helixProfile: PD.Select<"square" | "elliptical" | "rounded">; nucleicProfile: PD.Select<"square" | "elliptical" | "rounded">; detail: PD.Numeric; linearSegments: PD.Numeric; radialSegments: PD.Numeric; }>; export type PolymerTraceMeshProps = typeof DefaultPolymerTraceMeshProps; export declare const PolymerTraceParams: { sizeFactor: PD.Numeric; aspectRatio: PD.Numeric; arrowFactor: PD.Numeric; tubularHelices: PD.BooleanParam; roundCap: PD.BooleanParam; helixProfile: PD.Select<"square" | "elliptical" | "rounded">; nucleicProfile: PD.Select<"square" | "elliptical" | "rounded">; detail: PD.Numeric; linearSegments: PD.Numeric; radialSegments: PD.Numeric; unitKinds: PD.MultiSelect<"spheres" | "gaussians" | "atomic">; includeParent: PD.BooleanParam; 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 PolymerTraceParams = typeof PolymerTraceParams; export declare function PolymerTraceVisual(materialId: number): UnitsVisual;