Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-10 05:20:04 +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
|
* @return
|
||||||
*/
|
*/
|
||||||
public boolean containedWithin(Vector min, Vector max) {
|
public boolean containedWithin(Vector min, Vector max) {
|
||||||
return x >= min.getX() && x <= max.getX()
|
return x >= min.x && x <= max.x
|
||||||
&& y >= min.getY() && y <= max.getY()
|
&& y >= min.y && y <= max.y
|
||||||
&& z >= min.getZ() && z <= max.getZ();
|
&& z >= min.z && z <= max.z;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -679,7 +679,7 @@ public class Vector {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Vector other = (Vector) obj;
|
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
|
* @return
|
||||||
*/
|
*/
|
||||||
public boolean containedWithin(Vector2D min, Vector2D max) {
|
public boolean containedWithin(Vector2D min, Vector2D max) {
|
||||||
return x >= min.getX() && x <= max.getX()
|
return x >= min.x && x <= max.x
|
||||||
&& z >= min.getZ() && z <= max.getZ();
|
&& z >= min.z && z <= max.z;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren