3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Added vararg expand and contract overload to Region and AbstractRegion.

Dieser Commit ist enthalten in:
TomyLobo 2012-01-05 21:06:40 +01:00
Ursprung e4d3f70594
Commit ef3aeda0dc
2 geänderte Dateien mit 28 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -33,6 +33,18 @@ public abstract class AbstractRegion implements Region {
this.world = world;
}
public void expand(Vector... changes) throws RegionOperationException {
for (Vector change : changes) {
expand(change);
}
}
public void contract(Vector... changes) throws RegionOperationException {
for (Vector change : changes) {
contract(change);
}
}
public void shift(Vector change) throws RegionOperationException {
expand(change);
contract(change);

Datei anzeigen

@ -80,6 +80,14 @@ public interface Region extends Iterable<BlockVector> {
*/
public void expand(Vector change) throws RegionOperationException;
/**
* Expand the region.
*
* @param changes array/arguments with multiple related changes
* @throws RegionOperationException
*/
public void expand(Vector... changes) throws RegionOperationException;
/**
* Contract the region.
*
@ -88,6 +96,14 @@ public interface Region extends Iterable<BlockVector> {
*/
public void contract(Vector change) throws RegionOperationException;
/**
* Contract the region.
*
* @param changes array/arguments with multiple related changes
* @throws RegionOperationException
*/
public void contract(Vector... changes) throws RegionOperationException;
/**
* Shift the region.
*