bruce-models 0.8.1 → 0.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2358,9 +2358,9 @@ var Geometry;
2358
2358
  var pointData = points[i];
2359
2359
  var coords = pointData.trim().split(splitterAxis);
2360
2360
  if (coords.length == 2 || coords.length == 3) {
2361
- var longitude = +coords[0];
2362
- var latitude = +coords[1];
2363
- var altitude = coords.length >= 3 ? +coords[2] : 0;
2361
+ var longitude = Number(coords[0]);
2362
+ var latitude = Number(coords[1]);
2363
+ var altitude = Number(coords.length >= 3 ? coords[2] : 0);
2364
2364
  if (longitude != null && latitude != null) {
2365
2365
  result.push({
2366
2366
  altitude: altitude,
@@ -3846,6 +3846,7 @@ var EntityGlobe;
3846
3846
  var Grid = /** @class */ (function () {
3847
3847
  function Grid() {
3848
3848
  this.cells = {};
3849
+ this.patches = [];
3849
3850
  }
3850
3851
  Grid.prototype.GetCellsForView = function (viewRect) {
3851
3852
  var _this = this;