@pencil.js/ellipse
v1.18.0
Published
Ellipse shape for Pencil.js package.
Downloads
45
Readme
Ellipse
Ellipse shape (oval).

Installation
npm install @pencil.js/ellipseExamples
import Ellipse from "@pencil.js/ellipse";
const position = [100, 200];
const width = 50;
const height = 20;
const options = {
fill: "red",
};
const ellipse = new Ellipse(position, width, height, options);EllipseOptions
Inherit from ComponentOptions.
Ellipse have no specific options.
