igniteui-react-core
Version:
Ignite UI React Core.
31 lines (30 loc) • 1.13 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 { Geometry } from "./Geometry";
import { GeometryCollection } from "./GeometryCollection";
import { markType } from "./type";
/**
* @hidden
*/
export let GeometryGroup = /*@__PURE__*/ (() => {
class GeometryGroup extends Geometry {
constructor() {
super();
this.d = null;
this.c = 0;
this.d = new GeometryCollection();
}
get_b() {
return 0;
}
get b() {
return this.get_b();
}
}
GeometryGroup.$t = /*@__PURE__*/ markType(GeometryGroup, 'GeometryGroup', Geometry.$);
return GeometryGroup;
})();