7 lines
76 B
JavaScript
7 lines
76 B
JavaScript
class Point {
|
|
constructor(x, y) {
|
|
this.cx = x;
|
|
this.cy = y;
|
|
}
|
|
}
|