igniteui-react-core
Version:
Ignite UI React Core.
44 lines (43 loc) • 1.4 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { PathSegment } from "./PathSegment";
import { markType } from "./type";
/**
* @hidden
*/
export let LineSegment = /*@__PURE__*/ (() => {
class LineSegment extends PathSegment {
get c() {
return this.b;
}
set c(a) {
this.b = a;
}
constructor(a, ..._rest) {
super();
this.b = null;
a = (a == void 0) ? 0 : a;
switch (a) {
case 0:
{
let c = _rest[0];
this.c = c;
}
break;
case 1: break;
}
}
get_a() {
return 0;
}
get a() {
return this.get_a();
}
}
LineSegment.$t = /*@__PURE__*/ markType(LineSegment, 'LineSegment', PathSegment.$);
return LineSegment;
})();