All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.graphic.shape.Circle.d.ts Maven / Gradle / Ivy

The newest version!
import Path, { PathProps } from '../Path';
export declare class CircleShape {
    cx: number;
    cy: number;
    r: number;
}
export interface CircleProps extends PathProps {
    shape?: Partial;
}
declare class Circle extends Path {
    shape: CircleShape;
    constructor(opts?: CircleProps);
    getDefaultShape(): CircleShape;
    buildPath(ctx: CanvasRenderingContext2D, shape: CircleShape): void;
}
export default Circle;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy