attempt to fix division by zero

This commit is contained in:
Phuntsok Drak-pa 2019-04-28 19:30:23 +02:00
parent 0ddea4a393
commit 451a55a6df
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ Shape::Shape(Shape &&other) noexcept
void Shape::update(cv::Point &&t_max_pos, int const t_max_size,
int const t_min_size) noexcept
{
int const size = (rand() % (t_max_size - t_min_size)) + t_min_size;
int const size = (rand() % (t_max_size - t_min_size)) + t_min_size + 1;
cv::Point const top_left
= {rand() % (t_max_pos.x - size), rand() % (t_max_pos.y - size)};
if (type_ == ShapeType::Triangle) {