Package com.sk89q.worldedit.function
Interface FlatRegionFunction
- All Known Implementing Classes:
BiomeReplace
,ExtentBiomeCopy
,FlatRegionMaskingFilter
,FlatRegionOffset
,SurfaceRegionFunction
public interface FlatRegionFunction
Performs a function on the columns in a
FlatRegion
, or also
known as vectors with only X and Z components (where Y is height).-
Method Summary
Modifier and TypeMethodDescriptionboolean
apply
(BlockVector2 position) Apply the function to the given position.
-
Method Details
-
apply
Apply the function to the given position.- Parameters:
position
- the position- Returns:
- true if something was changed
- Throws:
WorldEditException
- thrown on an error
-