UNPKG

molstar

Version:

A comprehensive macromolecular library.

19 lines (18 loc) 936 B
/** * Copyright (c) 2025-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Ludovic Autin <autin@scripps.edu> * @author Alexander Rose <alexander.rose@weirdbyte.de> */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { CustomProperty } from '../../common/custom-property.js'; import { Volume } from '../../../mol-model/volume.js'; import { Streamlines } from './shared.js'; export declare const BasicStreamlineCalculationParams: { seedDensity: PD.Numeric; stepSize: PD.Numeric; minSeparation: PD.Numeric; }; export type BasicStreamlineCalculationParams = typeof BasicStreamlineCalculationParams; export type BasicStreamlineCalculationProps = PD.Values<BasicStreamlineCalculationParams>; export declare function calculateBasicStreamlines(ctx: CustomProperty.Context, volume: Volume, props: BasicStreamlineCalculationProps): Promise<Streamlines>;