igniteui-react-core
Version:
Ignite UI React Core.
35 lines (34 loc) • 1.21 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 { Base, markType } from "./type";
import { Rect } from "./Rect";
/**
* @hidden
*/
export let Tile = /*@__PURE__*/ (() => {
class Tile extends Base {
constructor() {
super(...arguments);
this.d = 0;
this.e = 0;
this.f = 0;
this.c = 0;
this.i = null;
this.h = null;
this.b = new Date();
this.a = false;
this.g = null;
}
get j() {
let a = Math.pow(2, -this.f);
let b = Math.pow(2, -this.f);
return new Rect(0, this.d * a, this.e * b, a, b);
}
}
Tile.$t = /*@__PURE__*/ markType(Tile, 'Tile');
return Tile;
})();