* evas: Make evas_object_move on Evas_Object_Polygon work.

TODO: Make evas_object_resize work also.


SVN revision: 47291
This commit is contained in:
Cedric BAIL 2010-03-16 13:23:37 +00:00
parent 866ff94b13
commit 997b1a1b12
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ static void _loop(double t, int f)
x += sin((double)(f + (i * 13)) / (36.7 * SLOW)) * (win_w / 4);
y = (win_h / 2) - (h / 2);
y += cos((double)(f + (i * 28)) / (43.8 * SLOW)) * (win_h / 4);
poly(o, i, x, y);
evas_object_move(o, x, y);
}
FPS_STD(NAME);
}