removeList method
Removes list of objects from this object.
Implementation
Object3D removeList(List<Object3D> objects) {
  for (int i = 0; i < objects.length; i++) {
    remove(objects[i]);
  }
  return this;
}Removes list of objects from this object.
Object3D removeList(List<Object3D> objects) {
  for (int i = 0; i < objects.length; i++) {
    remove(objects[i]);
  }
  return this;
}