UNPKG

igniteui-react-core

Version:
48 lines (47 loc) 1.8 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 { CollisionGeometry } from "./CollisionGeometry"; import { markType } from "./type"; /** * @hidden */ var BoxCollisionGeometry = /** @class */ /*@__PURE__*/ (function (_super) { __extends(BoxCollisionGeometry, _super); function BoxCollisionGeometry(a) { var _this = _super.call(this) || this; _this.g = null; _this.g = a; return _this; } BoxCollisionGeometry.prototype.get_type = function () { return 0; }; Object.defineProperty(BoxCollisionGeometry.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); BoxCollisionGeometry.prototype.get_boundingBox = function () { return this.g; }; Object.defineProperty(BoxCollisionGeometry.prototype, "boundingBox", { get: function () { return this.get_boundingBox(); }, enumerable: false, configurable: true }); BoxCollisionGeometry.prototype.d = function (a) { return true; }; BoxCollisionGeometry.$t = markType(BoxCollisionGeometry, 'BoxCollisionGeometry', CollisionGeometry.$); return BoxCollisionGeometry; }(CollisionGeometry)); export { BoxCollisionGeometry };