Britbot
static int Britbot.Group.GetStructureVolume ( int  maxRing) [inline, static]

Definition at line 869 of file Group.cs.

        {
            //this is basic summation of arithmetic sequence, excluding the 0th ring because it's special. then we add it back.
            return (((2 * maxRing + 2) * maxRing) + 1);
        }