/** * Copyright (c) 2018-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { UnitsVisual } from '../units-visual.js'; import { VisualContext } from '../../visual.js'; import { Unit, Structure } from '../../../mol-model/structure.js'; import { Theme } from '../../../mol-theme/theme.js'; import { Points } from '../../../mol-geo/geometry/points/points.js'; import { ComplexVisual } from '../complex-visual.js'; export declare const ElementPointParams: { pointSizeAttenuation: PD.BooleanParam; ignoreHydrogens: PD.BooleanParam; ignoreHydrogensVariant: PD.Select<"all" | "non-polar">; traceOnly: PD.BooleanParam; stride: PD.Numeric; unitKinds: PD.MultiSelect<"spheres" | "gaussians" | "atomic">; includeParent: PD.BooleanParam; sizeFactor: PD.Numeric; pointStyle: PD.Select<"square" | "circle" | "fuzzy">; 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 ElementPointParams = typeof ElementPointParams; export declare function createElementPoint(ctx: VisualContext, unit: Unit, structure: Structure, theme: Theme, props: PD.Values, points: Points): Points; export declare function ElementPointVisual(materialId: number): UnitsVisual; export declare function createStructureElementPoint(ctx: VisualContext, structure: Structure, theme: Theme, props: PD.Values, points?: Points): Points; export declare const StructureElementPointParams: { pointSizeAttenuation: PD.BooleanParam; ignoreHydrogens: PD.BooleanParam; ignoreHydrogensVariant: PD.Select<"all" | "non-polar">; traceOnly: PD.BooleanParam; stride: PD.Numeric; unitKinds: PD.MultiSelect<"spheres" | "gaussians" | "atomic">; includeParent: PD.BooleanParam; sizeFactor: PD.Numeric; pointStyle: PD.Select<"square" | "circle" | "fuzzy">; 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 StructureElementPointParams = typeof StructureElementPointParams; export declare function StructureElementPointVisual(materialId: number): ComplexVisual;