| 107 | } |
| 108 | |
| 109 | bool AnimationSystem::GetArrowPosition(m2::PointD & position) |
| 110 | { |
| 111 | Animation::PropertyValue value; |
| 112 | if (GetProperty(Animation::Object::MyPositionArrow, Animation::ObjectProperty::Position, value)) |
| 113 | { |
| 114 | position = value.m_valuePointD; |
| 115 | return true; |
| 116 | } |
| 117 | return false; |
| 118 | } |
| 119 | |
| 120 | bool AnimationSystem::GetArrowAngle(double & angle) |
| 121 | { |