| 332 | } |
| 333 | |
| 334 | void LayoutHelper::moveNodeGroupVertically(const std::vector<Node*>& nodes, float delta) |
| 335 | { |
| 336 | for (auto&& node : nodes) |
| 337 | { |
| 338 | node->setPositionY(node->getPositionY() - delta); |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | /* @brief: group layout and alignment |
| 343 | ** @remark: |
nothing calls this directly
no test coverage detected