insert method

void insert(
  1. Envelope itemEnv,
  2. Object item
)
override

Inserts an item having the given bounds into the tree.

Implementation

void insert(Envelope itemEnv, Object item) {
  if (itemEnv.isNull()) {
    return;
  }
  super.insertObj(itemEnv, item);
}