Files
havox/projects/tsp/point.js
John Gatward 3cb8d5a14e tsp
2026-03-18 15:24:08 +00:00

7 lines
76 B
JavaScript

class Point {
constructor(x, y) {
this.cx = x;
this.cy = y;
}
}