aim helper wip

This commit is contained in:
minjaesong
2024-02-29 00:57:57 +09:00
parent 9caf2a0d7e
commit 410456e173
3 changed files with 129 additions and 11 deletions

View File

@@ -11,6 +11,8 @@ class Point2d() : Cloneable {
var x: Double = 0.0
var y: Double = 0.0
constructor(other: Point2d) : this(other.x, other.y)
constructor(x: Double, y: Double) : this() {
this.x = x
this.y = y