UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

31 lines (30 loc) 1.31 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 { Base, markType } from "igniteui-angular-core"; import { LinearGraphBackingFrame } from "./LinearGraphBackingFrame"; import { LinearGraphRectFrame } from "./LinearGraphRectFrame"; /** * @hidden */ export let LinearGraphFrame = /*@__PURE__*/ (() => { class LinearGraphFrame extends Base { constructor() { super(); this.a = null; this.b = null; this.a = new LinearGraphBackingFrame(); this.b = new LinearGraphRectFrame(); } d(a, b, c) { this.b = LinearGraphRectFrame.a(a, 1 - a, b.b, c.b); this.c.y(a, b.c, c.c); this.a.d(a, b.a, c.a); } } LinearGraphFrame.$t = markType(LinearGraphFrame, 'LinearGraphFrame'); return LinearGraphFrame; })();