#include <listnode.h>
Public Methods | |
int | Compare (const ListNode &Node) |
int | GetMyPosition () const |
void | SetMyPosition (int newPosition) |
Public Attributes | |
int | linkPosition |
BSP_node * | node |
|
Definition at line 12 of file listnode.cpp. References bigger, linkPosition, same, and smaller.
00013 { 00014 if (linkPosition < Node.linkPosition) 00015 return smaller; 00016 if (linkPosition > Node.linkPosition) 00017 return bigger; 00018 else 00019 return same; 00020 } |
|
Definition at line 10 of file listnode.h. References linkPosition.
00010 {return linkPosition;} |
|
Definition at line 11 of file listnode.h. References linkPosition.
00011 {linkPosition = newPosition;} |
|
Definition at line 12 of file listnode.h. Referenced by Compare(), GetMyPosition(), MakeNodeLists(), and SetMyPosition(). |
|
Definition at line 14 of file listnode.h. Referenced by CalculatePVS(), CountVisibleLeaves(), FindVisibleLeaves(), MakeNodeLists(), and MakePortalList(). |