Multi-Mode Formula
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
Return to Thread:Talk:Multi-Mode/Multi-Mode Formula.
Sorry for double post. Also like this it is possible to make Musashi Trick + Stop And Go + Random Movement
public double getDir(int complexity) {
double move = 1.0 / complexity;
return move * 36 + (Math.signum(--complexity) * (Math.random() * 256 - 128));
}
Dsekercioglu (talk)
It can easily be done by starting with a complexity of 1.
Dsekercioglu (talk)