Difference between revisions of "Template For Topic Pages"

From Robowiki
Jump to navigation Jump to search
(trying a template for topic pages)
 
m (Using <syntaxhighlight>.)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
==  Overview ==
 
 
What exactly is this topic all about, anyway?
 
What exactly is this topic all about, anyway?
  
== Sample Code ==
+
== Example code ==
 +
In the <code>onWhatever()</code> method:
  
<pre>
+
<syntaxhighlight>
 
int i = 1;
 
int i = 1;
 
setTurnRightRadians(i);
 
setTurnRightRadians(i);
 
execute();
 
execute();
</pre>
+
</syntaxhighlight>
  
== References ==
+
=== How it works ===
* Links to turials
+
Black magic, running in O(N^3 log N).
* Links to other sample code for this topic
 
  
 
== Bots using this technique ==
 
== Bots using this technique ==
Line 18: Line 17:
 
* ShmancyBot2
 
* ShmancyBot2
  
== Related techniques ==
+
== 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 10: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