Rotate to 360.

master
Fabien Freling 2014-08-06 23:12:08 +02:00
parent a419225ea3
commit 817b1a779b
1 changed files with 1 additions and 1 deletions

View File

@ -892,7 +892,7 @@ int main(int argc, char* argv[])
Image img(argv[1]);
float average = 0.0;
int i = 0;
for (double rotation = 0; rotation < 360; rotation += step)
for (double rotation = 0; rotation <= 360; rotation += step)
{
auto const before = chrono::high_resolution_clock::now();
Image* const rotated = rotate(img, rotation);