mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-01 02:46:41 +00:00
Renamed Polygonal2DRegion.getMin/MaxY to getMinimum/MaximumY.
This commit is contained in:
@ -165,6 +165,15 @@ public class Polygonal2DRegion implements Region {
|
||||
recalculate();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the minimum Y.
|
||||
*
|
||||
* @return min y
|
||||
*/
|
||||
public int getMininumY() {
|
||||
return minY;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the minimum Y.
|
||||
*
|
||||
@ -177,7 +186,16 @@ public class Polygonal2DRegion implements Region {
|
||||
}
|
||||
|
||||
/**
|
||||
* Se the maximum Y.
|
||||
* Get the maximum Y.
|
||||
*
|
||||
* @return max y
|
||||
*/
|
||||
public int getMaximumY() {
|
||||
return maxY;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the maximum Y.
|
||||
*
|
||||
* @param y
|
||||
*/
|
||||
@ -597,12 +615,4 @@ public class Polygonal2DRegion implements Region {
|
||||
public void setWorld(LocalWorld world) {
|
||||
this.world = world;
|
||||
}
|
||||
|
||||
public int getMinY() {
|
||||
return minY;
|
||||
}
|
||||
|
||||
public int getMaxY() {
|
||||
return maxY;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user