parent setter
| 671 | |
| 672 | /// parent setter |
| 673 | void Node::setParent(Node* parent) |
| 674 | { |
| 675 | _parent = parent; |
| 676 | _normalizedPositionDirty = true; |
| 677 | _transformUpdated = _transformDirty = _inverseDirty = true; |
| 678 | } |
| 679 | |
| 680 | /// isRelativeAnchorPoint getter |
| 681 | bool Node::isIgnoreAnchorPointForPosition() const |
no outgoing calls
no test coverage detected