mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-01 02:46:41 +00:00
//sel poly now keeps the previous selection, converting its outline into a polygon if necessary.
This loses some blocks, if anyone cares
This commit is contained in:
@ -50,7 +50,7 @@ public class Polygonal2DRegion implements Region {
|
||||
* Construct the region
|
||||
*/
|
||||
public Polygonal2DRegion() {
|
||||
this(null);
|
||||
this((LocalWorld) null);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -84,6 +84,11 @@ public class Polygonal2DRegion implements Region {
|
||||
recalculate();
|
||||
}
|
||||
|
||||
public Polygonal2DRegion(Polygonal2DRegion region) {
|
||||
this(region.world, region.points, region.minY, region.maxY);
|
||||
hasY = region.hasY;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of points.
|
||||
*
|
||||
|
Reference in New Issue
Block a user