Package ch.njol.skript.util

Examples of ch.njol.skript.util.BlockSphereIterator


  public Iterator<Block> iterator(final Event e) {
    final Location l = center.getSingle(e);
    final Number r = radius.getSingle(e);
    if (l == null || r == null)
      return new EmptyIterator<Block>();
    return new BlockSphereIterator(l, r.doubleValue());
  }
View Full Code Here

TOP

Related Classes of ch.njol.skript.util.BlockSphereIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.