This commit is contained in:
nim-ka
2022-11-09 01:02:07 +00:00
parent f8e9088e67
commit d1a727ca18
7 changed files with 231 additions and 20 deletions

2
pt.js
View File

@@ -60,6 +60,8 @@ Pt = Point = class Point {
toString() { return this.x + "," + this.y }
}
Point.NONE = new Point(null, null)
P = function P(...args) {
return new Point(...args)
}