Difference between revisions of "Template For Topic Pages"
Jump to navigation
Jump to search
(trying a template for topic pages) |
RednaxelaBot (talk | contribs) m (Using <syntaxhighlight>.) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
− | |||
What exactly is this topic all about, anyway? | What exactly is this topic all about, anyway? | ||
− | == | + | == Example code == |
+ | In the <code>onWhatever()</code> method: | ||
− | < | + | <syntaxhighlight> |
int i = 1; | int i = 1; | ||
setTurnRightRadians(i); | setTurnRightRadians(i); | ||
execute(); | execute(); | ||
− | </ | + | </syntaxhighlight> |
− | == | + | === How it works === |
− | + | Black magic, running in O(N^3 log N). | |
− | |||
== Bots using this technique == | == Bots using this technique == | ||
Line 18: | Line 17: | ||
* ShmancyBot2 | * ShmancyBot2 | ||
− | == | + | == See also == |
* BorkBork | * BorkBork | ||
* Botany | * Botany | ||
* BottlePopping | * BottlePopping | ||
+ | |||
+ | == References == | ||
+ | * Links to tutorials | ||
+ | * Links to other sample code for this topic | ||
[[Category:Templates|Template For Topic Pages]] | [[Category:Templates|Template For Topic Pages]] |
Latest revision as of 09:31, 1 July 2010
What exactly is this topic all about, anyway?
Example code
In the onWhatever()
method:
int i = 1;
setTurnRightRadians(i);
execute();
How it works
Black magic, running in O(N^3 log N).
Bots using this technique
- FancyBot1
- ShmancyBot2
See also
- BorkBork
- Botany
- BottlePopping
References
- Links to tutorials
- Links to other sample code for this topic