addition of vectors
Vector to string
This commit is contained in:
parent
5dceec0f79
commit
7e434f9a6d
@ -26,4 +26,13 @@ public class Vec2 implements Serializable {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public Vec2 add(Vec2 o){
|
||||
return new Vec2(x + o.x, y + o.y);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "("+x+","+y+")";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user