molstar
Version:
A comprehensive macromolecular library.
12 lines (11 loc) • 432 B
TypeScript
/**
* Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { Model } from '../../../mol-model/structure/model';
export interface HelixOrientation {
centers: ArrayLike<number>;
}
/** Usees same definition as GROMACS' helixorient */
export declare function calcHelixOrientation(model: Model): HelixOrientation;