#include #include typedef struct worldMesh { long int count; GLfloat* vertices; } worldMesh; /*! * @brief top-level world generation function * * @param[in] pos the position of the center of the roughly spherical world * @return the world mesh as a heap-allocated list of vertices. */ worldMesh generateWorld(vec3s pos);