Fixed Vector.containedWithinBlock(min, max) and Vector2D.equals(Vector2D)

This commit is contained in:
TomyLobo 2012-01-03 00:58:00 +01:00
parent f11415f451
commit 4500f93a1b
2 changed files with 2 additions and 2 deletions

View File

@ -508,7 +508,7 @@ public class Vector {
public boolean containedWithinBlock(Vector min, Vector max) { public boolean containedWithinBlock(Vector min, Vector max) {
return getBlockX() >= min.getBlockX() && getBlockX() <= max.getBlockX() return getBlockX() >= min.getBlockX() && getBlockX() <= max.getBlockX()
&& getBlockY() >= min.getBlockY() && getBlockY() <= max.getBlockY() && getBlockY() >= min.getBlockY() && getBlockY() <= max.getBlockY()
&& getBlockZ() >= min.getBlockZ() && getBlockZ() <= max.getBlockY(); && getBlockZ() >= min.getBlockZ() && getBlockZ() <= max.getBlockZ();
} }
/** /**

View File

@ -165,7 +165,7 @@ public class Vector2D {
if (!(obj instanceof Vector2D)) { if (!(obj instanceof Vector2D)) {
return false; return false;
} }
Vector other = (Vector) obj; Vector2D other = (Vector2D) obj;
return other.x == this.x && other.z == this.z; return other.x == this.x && other.z == this.z;
} }