/** * @file Rope Representation * @author Alexander Rose * @private */ import CartoonRepresentation, { CartoonRepresentationParameters } from './cartoon-representation'; import Spline from '../geometry/spline'; import { Structure } from '../ngl'; import Viewer from '../viewer/viewer'; import Polymer from '../proxy/polymer'; /** * Rope Representation */ declare class RopeRepresentation extends CartoonRepresentation { protected smooth: number; constructor(structure: Structure, viewer: Viewer, params: Partial & { smooth: number; }); init(params: Partial): void; getSpline(polymer: Polymer): Spline; } export default RopeRepresentation;