Miscellany
public text v1 · immutable // ff checken of de cirkels overlapen
public boolean overlapt ( Cirkel that ) {
if ( straal > 0 ) {
double afstand = this.getMiddelpunt().afstand( that.getMiddelpunt() );
if ( afstand <= ( this.getStraal() + that.getStraal () ) ) {
return true;
}
}
return false;
}