itowns
Version:
A JS/WebGL framework for 3D geospatial data visualization
19 lines (16 loc) • 415 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
function Point2D(x, y) {
this.x = x || 0;
this.y = y || 0;
}
var _default = Point2D;
exports["default"] = _default;
;