mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
35db670c97
git-subtree-dir: lib/vis git-subtree-split: 1d029cab7b527f3b292e95d550efbf784dac8699
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
/**
|
|
* @prototype Point2d
|
|
* @param {Number} [x]
|
|
* @param {Number} [y]
|
|
*/
|
|
function Point2d (x, y) {
|
|
this.x = x !== undefined ? x : 0;
|
|
this.y = y !== undefined ? y : 0;
|
|
}
|
|
|
|
module.exports = Point2d;
|