Class InverseMask

java.lang.Object
com.sk89q.worldedit.function.mask.AbstractMask
com.fastasyncworldedit.core.function.mask.InverseMask
All Implemented Interfaces:
Mask

public class InverseMask extends AbstractMask
  • Constructor Details

    • InverseMask

      public InverseMask(Mask other)
  • Method Details

    • test

      public boolean test(BlockVector3 pos)
      Description copied from interface: Mask
      Returns true if the criteria is met.
      Parameters:
      pos - the vector to test
      Returns:
      true if the criteria is met
    • toMask2D

      @Nullable public Mask2D 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
    • inverse

      public Mask inverse()
    • copy

      public Mask copy()
      Description copied from interface: Mask
      Returns a copy of the mask. Usually for multi-threaded operation
      Returns:
      a clone of the mask
    • replacesAir

      public boolean replacesAir()