! * Gets the vector from the center of the map to the origin * of the map data structure. * @param[out] vectorToOrigin the vector from the center of the map the origin of the map data structure. * @param[in] mapLength the lengths in x and y direction. * @return true if successful. */
| 28 | * @return true if successful. |
| 29 | */ |
| 30 | inline bool getVectorToOrigin(Vector& vectorToOrigin, const Length& mapLength) |
| 31 | { |
| 32 | vectorToOrigin = (0.5 * mapLength).matrix(); |
| 33 | return true; |
| 34 | } |
| 35 | |
| 36 | /*! |
| 37 | * Gets the vector from the center of the map to the center |
no outgoing calls
no test coverage detected