insertObj method

void insertObj(
  1. Object bounds,
  2. Object item
)

Implementation

void insertObj(Object bounds, Object item) {
  Assert.isTrue(!built,
      "Cannot insert items into an STR packed R-tree after it has been built.");
  itemBoundables!.add(new ItemBoundable(bounds, item));
}