You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 31 should be minmaxPoint.max[1] - minmaxPoint.min[1];
Line 35 should be var offsetY = height / 2 + minmaxPoint.min[1];
Line 40, 41 should be minmaxPoint.min[2] and minmaxPoint.max[2]
Line 62 should be + offsetY / tileHeight * latitudeExtent;
Line 64 should be + offsetY / tileHeight * latitudeExtent; (use plus sign instead of minus sign)
The text was updated successfully, but these errors were encountered:
objTo3d-tiles/lib/obj2Tileset.js
Line 31 in 0e0d32f
the indice of Height and Y are wrong.
Line 31 should be
minmaxPoint.max[1] - minmaxPoint.min[1];
Line 35 should be
var offsetY = height / 2 + minmaxPoint.min[1];
Line 40, 41 should be
minmaxPoint.min[2]
andminmaxPoint.max[2]
objTo3d-tiles/lib/createSingleTileset.js
Line 62 in 0e0d32f
Line 62 should be
+ offsetY / tileHeight * latitudeExtent;
Line 64 should be
+ offsetY / tileHeight * latitudeExtent;
(use plus sign instead of minus sign)The text was updated successfully, but these errors were encountered: