| 103 | } |
| 104 | |
| 105 | void TrackObject::SetInitialPoint(int32_t x, int32_t y) |
| 106 | { |
| 107 | if (mValid && mRoot) |
| 108 | { |
| 109 | mX0 = (2.0f * x - mXSize) * mMultiplier; |
| 110 | mY0 = (2.0f * y - mYSize) * mMultiplier; |
| 111 | OnSetInitialPoint(); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void TrackObject::SetFinalPoint(int32_t x, int32_t y) |
| 116 | { |
no outgoing calls
no test coverage detected