UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

39 lines (38 loc) 1.59 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 { RadialGaugeNeedleFrame } from "./RadialGaugeNeedleFrame"; import { RadialGaugeScaleFrame } from "./RadialGaugeScaleFrame"; import { BackingFrame } from "./BackingFrame"; /** * @hidden */ export let RadialGaugeFrame = /*@__PURE__*/ (() => { class RadialGaugeFrame extends Base { constructor() { super(); this.c = null; this.b = null; this.d = null; this.a = null; this.e = 0; this.c = new RadialGaugeNeedleFrame(); this.b = new RadialGaugeNeedleFrame(); this.d = new RadialGaugeScaleFrame(); this.a = new BackingFrame(); } f(a, b, c) { this.e = b.e + (c.e - b.e) * a; this.c.ag(a, b.c, c.c); this.b.ag(a, b.b, c.b); this.d.af(a, b.d, c.d); this.a.k(a, b.a, c.a); } } RadialGaugeFrame.$t = markType(RadialGaugeFrame, 'RadialGaugeFrame'); return RadialGaugeFrame; })();