public interface ExtentBufferFactory
Modifier and Type | Method and Description |
---|---|
MutableBiomeArea |
createBiomeBuffer(int xSize,
int zSize)
Returns a new biome buffer of the desired size.
|
MutableBiomeArea |
createBiomeBuffer(com.flowpowered.math.vector.Vector2i size)
Returns a new biome buffer of the desired size.
|
MutableBlockVolume |
createBlockBuffer(int xSize,
int ySize,
int zSize)
Returns a new block buffer of the desired size.
|
MutableBlockVolume |
createBlockBuffer(com.flowpowered.math.vector.Vector3i size)
Returns a new block buffer of the desired size.
|
MutableBiomeArea |
createThreadSafeBiomeBuffer(int xSize,
int zSize)
Returns a new biome buffer of the desired size.
|
MutableBiomeArea |
createThreadSafeBiomeBuffer(com.flowpowered.math.vector.Vector2i size)
Returns a new biome buffer of the desired size.
|
MutableBlockVolume |
createThreadSafeBlockBuffer(int xSize,
int ySize,
int zSize)
Returns a new block buffer of the desired size.
|
MutableBlockVolume |
createThreadSafeBlockBuffer(com.flowpowered.math.vector.Vector3i size)
Returns a new block buffer of the desired size.
|
MutableBiomeArea createBiomeBuffer(com.flowpowered.math.vector.Vector2i size)
size
- The size of the buffer on x and z (y in the vector)MutableBiomeArea createBiomeBuffer(int xSize, int zSize)
xSize
- The size of the buffer on xzSize
- The size of the buffer on zMutableBiomeArea createThreadSafeBiomeBuffer(com.flowpowered.math.vector.Vector2i size)
size
- The size of the buffer on x and z (y in the vector)MutableBiomeArea createThreadSafeBiomeBuffer(int xSize, int zSize)
xSize
- The size of the buffer on xzSize
- The size of the buffer on zMutableBlockVolume createBlockBuffer(com.flowpowered.math.vector.Vector3i size)
size
- The size of the buffer on x, y and zMutableBlockVolume createBlockBuffer(int xSize, int ySize, int zSize)
xSize
- The size of the buffer on xySize
- The size of the buffer on yzSize
- The size of the buffer on zMutableBlockVolume createThreadSafeBlockBuffer(com.flowpowered.math.vector.Vector3i size)
size
- The size of the buffer on x, y and zMutableBlockVolume createThreadSafeBlockBuffer(int xSize, int ySize, int zSize)
xSize
- The size of the buffer on xySize
- The size of the buffer on yzSize
- The size of the buffer on z