/** * Copyright (c) 2020-2022 mol* contributors, licensed under MIT, See LICENSE file for more info. * * Inspired by https://github.com/dgasmith/gau2grid. * * @author David Sehnal */ import { WebGLContext } from '../../mol-gl/webgl/context.js'; import { Task } from '../../mol-task/index.js'; import { AlphaOrbital, CubeGrid, CubeGridComputationParams } from './data-model.js'; export declare function createSphericalCollocationGrid(params: CubeGridComputationParams, orbital: AlphaOrbital, webgl?: WebGLContext): Task; export declare function computeOrbitalIsocontourValues(input: Float32Array, cumulativeThreshold: number): { negative: number | undefined; positive: number | undefined; };