public Pos Subtract(Pos pos) { return(new Pos(this.x - pos.x, this.y - pos.y, this.z - pos.z)); }
public Pos Add(Pos pos) { return(new Pos(this.x + pos.x, this.y + pos.y, this.z + pos.z)); }