public Coord3(Vector3f vec) {
   this.x = (int) Math.floor(vec.x);
   this.y = (int) Math.floor(vec.y);
   this.z = (int) Math.floor(vec.z);
 }