Refactor tests

This commit is contained in:
2022-04-07 17:42:45 +02:00
parent cda144aa2a
commit f156da4803
7 changed files with 102 additions and 167 deletions

View File

@ -22,6 +22,10 @@ public class Vector3 {
this.z = z;
}
public Vector3(Vector3 other) {
this(other.x, other.y, other.z);
}
/**
* Returns the sum of this vector and vector 'v'.
*/