UNPKG

molstar

Version:

A comprehensive macromolecular library.

59 lines (58 loc) 2.15 kB
/** * Copyright (c) 2018-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Gianluca Tomasello <giagitom@gmail.com> */ import { ParamDefinition as PD } from '../../../mol-util/param-definition'; import { UnitsVisual } from '../units-visual'; export declare const PolymerGapCylinderParams: { sizeFactor: PD.Numeric; radialSegments: PD.Numeric; }; export declare const DefaultPolymerGapCylinderProps: PD.Values<{ sizeFactor: PD.Numeric; radialSegments: PD.Numeric; }>; export type PolymerGapCylinderProps = typeof DefaultPolymerGapCylinderProps; export declare const PolymerGapParams: { sizeFactor: 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<boolean | "inverted">; transparentBackfaces: PD.Select<"off" | "on" | "opaque">; bumpFrequency: PD.Numeric; bumpAmplitude: PD.Numeric; alpha: PD.Numeric; quality: PD.Select<"auto" | "medium" | "high" | "low" | "custom" | "highest" | "higher" | "lower" | "lowest">; material: PD.Group<PD.Normalize<{ metalness: number; roughness: number; bumpiness: number; }>>; clip: PD.Group<PD.Normalize<{ variant: import("../../../mol-util/clip").Clip.Variant; objects: PD.Normalize<{ type: /*elided*/ any; invert: /*elided*/ any; position: /*elided*/ any; rotation: /*elided*/ any; scale: /*elided*/ any; transform: /*elided*/ any; }>[]; }>>; emissive: PD.Numeric; density: PD.Numeric; instanceGranularity: PD.BooleanParam; lod: PD.Vec3; cellSize: PD.Numeric; batchSize: PD.Numeric; }; export type PolymerGapParams = typeof PolymerGapParams; export declare function PolymerGapVisual(materialId: number): UnitsVisual<PolymerGapParams>;