Solve the black bar jigsaw problem. close #104

This commit is contained in:
2022-08-10 18:02:33 +00:00
parent 150614aec6
commit 3c708cd6f6
4 changed files with 51 additions and 16 deletions

View File

@@ -6,4 +6,10 @@ class Vec2{
x = x_;
y = y_;
}
public function copy() {
return new Vec2(x, y);
}
public function toString() {
return '(${x}, ${y})';
}
}