| 1442 | return rootDirectionDependentVisual; |
| 1443 | } |
| 1444 | |
| 1445 | Point ViewNode::getDirectionDependentTransform() const { |
| 1446 | auto directionDependentFrame = getCalculatedFrame(); |
| 1447 | return Point(directionDependentFrame.x + getDirectionDependentTranslationX(), |
| 1448 | directionDependentFrame.y + getTranslationY()); |
| 1449 | } |
| 1450 | |
| 1451 | Point ViewNode::getDirectionAgnosticTransform() const { |
| 1452 | auto directionAgnosticFrame = getDirectionAgnosticFrame(); |
no test coverage detected