///////////////////////////////////////////////////////
| 56 | |
| 57 | //////////////////////////////////////////////////////////// |
| 58 | void ConvexShape::setPoint(std::size_t index, Vector2f point) |
| 59 | { |
| 60 | assert(index < m_points.size() && "Index is out of bounds"); |
| 61 | m_points[index] = point; |
| 62 | update(); |
| 63 | } |
| 64 | |
| 65 | |
| 66 | //////////////////////////////////////////////////////////// |
no test coverage detected