| 141 | } |
| 142 | |
| 143 | int |
| 144 | VisualNode::getPathAlternative(const NodeAllocator& na) { |
| 145 | for (int i=getNumberOfChildren(); i--;) { |
| 146 | if (getChild(na,i)->isOnPath()) |
| 147 | return i; |
| 148 | } |
| 149 | return -1; |
| 150 | } |
| 151 | |
| 152 | void |
| 153 | VisualNode::toggleHidden(const NodeAllocator& na) { |
no test coverage detected