visual screen
| 998 | |
| 999 | /// visual screen |
| 1000 | float LayoutHelper::VisibleRect::getNodeLeft(Node* pNode) |
| 1001 | { |
| 1002 | ax::Point ptLocal(LayoutHelper::getNodeLeft(pNode), 0); |
| 1003 | auto ptWorld = pNode->getParent()->convertToWorldSpace(ptLocal); |
| 1004 | return ptWorld.x; |
| 1005 | } |
| 1006 | float LayoutHelper::VisibleRect::getNodeBottom(Node* pNode) |
| 1007 | { |
| 1008 | ax::Point ptLocal(0, LayoutHelper::getNodeBottom(pNode)); |
nothing calls this directly
no test coverage detected