molstar
Version:
A comprehensive macromolecular library.
15 lines (14 loc) • 466 B
TypeScript
/**
* Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { Primitive } from './primitive';
export declare const DefaultCircleProps: {
radius: number;
segments: number;
thetaStart: number;
thetaLength: number;
};
export type CirclerProps = Partial<typeof DefaultCircleProps>;
export declare function Circle(props?: CirclerProps): Primitive;