/**
* Round a point to the nearest integer.
* @parampoint - Point to round.
* @returns The rounded point.
*/exportfunctionroundPoint(point) {
return {
row: Math.round(point.row),
column: Math.round(point.column),
};
}
//# sourceMappingURL=roundPoint.js.map