UNPKG

konva

Version:

<p align="center"> <img src="https://raw.githubusercontent.com/konvajs/konvajs.github.io/master/apple-touch-icon-180x180.png" alt="Konva logo" height="180" /> </p>

39 lines (38 loc) 974 B
import { Shape } from '../Shape'; import { GetSet } from '../types'; /** * Arc constructor * @constructor * @memberof Konva * @augments Konva.Shape * @param {Object} config * @param {Number} config.angle in degrees * @param {Number} config.innerRadius * @param {Number} config.outerRadius * @param {Boolean} [config.clockwise] * @@shapeParams * @@nodeParams * @example * // draw a Arc that's pointing downwards * var arc = new Konva.Arc({ * innerRadius: 40, * outerRadius: 80, * fill: 'red', * stroke: 'black' * strokeWidth: 5, * angle: 60, * rotationDeg: -120 * }); */ export declare class Arc extends Shape { _centroid: boolean; _sceneFunc(context: any): void; getWidth(): number; getHeight(): number; setWidth(width: any): void; setHeight(height: any): void; innerRadius: GetSet<number, this>; outerRadius: GetSet<number, this>; angle: GetSet<number, this>; clockwise: GetSet<boolean, this>; }