generateTarget method
Implementation
Mobject generateTarget() {
// Prevent exponential explosion (copying the target into the target)
target = null;
var mob = copy();
target = mob;
return mob;
}
Mobject generateTarget() {
// Prevent exponential explosion (copying the target into the target)
target = null;
var mob = copy();
target = mob;
return mob;
}