removeInstanceAt method
Removes the instance at index. Instances after it shift down by
one, so their indices change.
Implementation
void removeInstanceAt(int index) {
_instances.removeAt(index);
_colors.removeAt(index);
_windingFlipped.removeAt(index);
_boundsDirty = true;
_revision++;
}