Air-Quality-Web/client_src/js/Overlay/VoronoiCell.mjs

17 lines
308 B
JavaScript

"use strict";
import Vector2 from '../Helpers/Vector2.mjs';
/**
* Represents a single Voronoi diagram cell.
* @param {Vector2} point The point at which the cell is located.
*/
class VoronoiCell {
constructor(in_point) {
this.point = in_point;
this.polygon = null;
}
}
export default VoronoiCell;