Class BoundedHeightMask
java.lang.Object
com.sk89q.worldedit.function.mask.AbstractMask
com.sk89q.worldedit.function.mask.BoundedHeightMask
- All Implemented Interfaces:
Mask
Has the criteria where the Y value of passed positions must be within
a certain range of Y values (inclusive).
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
test
(BlockVector3 vector) Returns true if the criteria is met.toMask2D()
Get the 2D version of this mask if one exists.
-
Constructor Details
-
BoundedHeightMask
public BoundedHeightMask(int minY, int maxY) Create a new bounded height mask.- Parameters:
minY
- the minimum YmaxY
- the maximum Y (must be equal to or greater than minY)
-
-
Method Details
-
test
Description copied from interface:Mask
Returns true if the criteria is met.- Parameters:
vector
- the vector to test- Returns:
- true if the criteria is met
-
toMask2D
Description copied from interface:Mask
Get the 2D version of this mask if one exists.- Returns:
- a 2D mask version or
null
if this mask can't be 2D
-