Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 02:50:05 +01:00
Optimized Vector[2D].containedWithin and Vector.equals slightly.
Dieser Commit ist enthalten in:
Ursprung
99b0345ca6
Commit
4890c1ef9c
@ -517,9 +517,9 @@ public class Vector {
|
||||
* @return
|
||||
*/
|
||||
public boolean containedWithin(Vector min, Vector max) {
|
||||
return x >= min.getX() && x <= max.getX()
|
||||
&& y >= min.getY() && y <= max.getY()
|
||||
&& z >= min.getZ() && z <= max.getZ();
|
||||
return x >= min.x && x <= max.x
|
||||
&& y >= min.y && y <= max.y
|
||||
&& z >= min.z && z <= max.z;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -679,7 +679,7 @@ public class Vector {
|
||||
}
|
||||
|
||||
Vector other = (Vector) obj;
|
||||
return other.getX() == this.x && other.getY() == this.y && other.getZ() == this.z;
|
||||
return other.x == this.x && other.y == this.y && other.z == this.z;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -456,8 +456,8 @@ public class Vector2D {
|
||||
* @return
|
||||
*/
|
||||
public boolean containedWithin(Vector2D min, Vector2D max) {
|
||||
return x >= min.getX() && x <= max.getX()
|
||||
&& z >= min.getZ() && z <= max.getZ();
|
||||
return x >= min.x && x <= max.x
|
||||
&& z >= min.z && z <= max.z;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren