/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { OrderedSet } from 'mol-data/int' export interface PositionData { x: ArrayLike, y: ArrayLike, z: ArrayLike, // subset indices into the x/y/z/radius arrays indices: OrderedSet, // optional element radius radius?: ArrayLike }