mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 02:47:11 +00:00
Optimized Vector[2D].containedWithin and Vector.equals slightly.
This commit is contained in:
parent
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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user