3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

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

Dieser Commit ist enthalten in:
TomyLobo 2012-01-03 00:58:00 +01:00
Ursprung f11415f451
Commit 4500f93a1b
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

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