igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
41 lines (40 loc) • 1.71 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 { __extends } from "tslib";
import { Base, markType } from "igniteui-angular-core";
import { RadialGaugeNeedleFrame } from "./RadialGaugeNeedleFrame";
import { RadialGaugeScaleFrame } from "./RadialGaugeScaleFrame";
import { BackingFrame } from "./BackingFrame";
/**
* @hidden
*/
var RadialGaugeFrame = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RadialGaugeFrame, _super);
function RadialGaugeFrame() {
var _this = _super.call(this) || this;
_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();
return _this;
}
RadialGaugeFrame.prototype.f = function (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;
}(Base));
export { RadialGaugeFrame };