| 91 | } |
| 92 | |
| 93 | void TrackObject::DetachAll() |
| 94 | { |
| 95 | if (mValid) |
| 96 | { |
| 97 | auto node = std::dynamic_pointer_cast<Node>(mRoot); |
| 98 | if (node) |
| 99 | { |
| 100 | node->DetachAllChildren(); |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | void TrackObject::SetInitialPoint(int32_t x, int32_t y) |
| 106 | { |
nothing calls this directly
no test coverage detected