| 146 | } |
| 147 | |
| 148 | void GraphItem::adjust() |
| 149 | { |
| 150 | if ( this->parentLink ) |
| 151 | this->parentLink->adjust(); |
| 152 | |
| 153 | for ( auto link : this->childLinks ) |
| 154 | link->adjust(); |
| 155 | } |
| 156 | |
| 157 | void GraphItem::calculateForces() |
| 158 | { |
no outgoing calls
no test coverage detected