cione-comp-lib
Version:
`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`
36 lines (35 loc) • 1 kB
JavaScript
import { __extends } from "../../../../tslib/tslib.es6.mjs";
import Path from "../Path.mjs";
import { buildPath } from "../helper/roundSector.mjs";
var SectorShape = function() {
function SectorShape2() {
this.cx = 0;
this.cy = 0;
this.r0 = 0;
this.r = 0;
this.startAngle = 0;
this.endAngle = Math.PI * 2;
this.clockwise = true;
this.cornerRadius = 0;
}
return SectorShape2;
}();
var Sector = function(_super) {
__extends(Sector2, _super);
function Sector2(opts) {
return _super.call(this, opts) || this;
}
Sector2.prototype.getDefaultShape = function() {
return new SectorShape();
};
Sector2.prototype.buildPath = function(ctx, shape) {
buildPath(ctx, shape);
};
Sector2.prototype.isZeroArea = function() {
return this.shape.startAngle === this.shape.endAngle || this.shape.r === this.shape.r0;
};
return Sector2;
}(Path);
Sector.prototype.type = "sector";
var Sector$1 = Sector;
export { SectorShape, Sector$1 as default };