| 73 | } |
| 74 | |
| 75 | forceinline void |
| 76 | SpaceNode::setDistance(unsigned int d) { |
| 77 | if (d > MAXDISTANCE) |
| 78 | d = MAXDISTANCE; |
| 79 | nstatus &= ~( DISTANCEMASK ); |
| 80 | nstatus |= d; |
| 81 | } |
| 82 | |
| 83 | forceinline unsigned int |
| 84 | SpaceNode::getDistance(void) const { |
no outgoing calls
no test coverage detected