removeProxy method
Remove the proxy from the broad-phase.
Implementation
@override
void removeProxy(Proxy proxy) {
if(proxy is DBVTProxy){
tree.deleteLeaf(proxy.leaf);
int n = leaves.indexOf(proxy.leaf);
if ( n > -1 ) {
leaves.removeAt(n);
numLeaves--;
}
}
}