UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

35 lines (34 loc) 1.34 kB
/* 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 { __extends } from "tslib"; import { Geometry } from "./Geometry"; import { markType } from "./type"; /** * @hidden */ var LineGeometry = /** @class */ /*@__PURE__*/ (function (_super) { __extends(LineGeometry, _super); function LineGeometry() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.d = null; _this.c = null; return _this; } LineGeometry.prototype.get_b = function () { return 1; }; Object.defineProperty(LineGeometry.prototype, "b", { get: function () { return this.get_b(); }, enumerable: false, configurable: true }); LineGeometry.$t = markType(LineGeometry, 'LineGeometry', Geometry.$); return LineGeometry; }(Geometry)); export { LineGeometry };