#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "ephysics_test.h"
static void
_world_populate(Test_Data *test_data)
{
      pentagon, PACKAGE_DATA_DIR "/" EPHYSICS_TEST_THEME ".edj", "pentagon");
   evas_object_move(pentagon, WIDTH / 3, HEIGHT / 2 - 80);
   evas_object_resize(pentagon, 70, 68);
      hexagon, PACKAGE_DATA_DIR "/" EPHYSICS_TEST_THEME ".edj", "hexagon");
   evas_object_move(hexagon, WIDTH / 3 + 100, HEIGHT / 2 - 100);
   evas_object_resize(hexagon, 70, 60);
}
static void
_restart(
void *data, 
Evas_Object *obj __UNUSED__, 
const char *emission __UNUSED__, 
const char *source __UNUSED__)
{
   Test_Data *test_data = data;
   test_clean(test_data);
   _world_populate(test_data);
}
void
test_shapes(
void *data __UNUSED__, 
Evas_Object *obj __UNUSED__, 
void *event_info __UNUSED__)
{
   Test_Data *test_data;
     return;
   test_data = test_data_new();
   test_win_add(test_data, 
"Shapes", 
EINA_TRUE);
                                  _restart, test_data);
                                      WIDTH - 100, FLOOR_Y - 40, DEPTH);
   test_data->world = world;
   _world_populate(test_data);
}