| 345 | } |
| 346 | |
| 347 | double Polygon::vectorsMakeClockwiseTurn(const Eigen::Vector2d &pointOrigin, |
| 348 | const Eigen::Vector2d &pointA, |
| 349 | const Eigen::Vector2d &pointB) |
| 350 | { |
| 351 | return computeCrossProduct2D(pointA - pointOrigin, pointB - pointOrigin) <= 0; |
| 352 | } |
| 353 | |
| 354 | } /* namespace grid_map */ |
nothing calls this directly
no outgoing calls
no test coverage detected