views:

226

answers:

2

I'm writing a small OpenGL demo and I would really like to show some example models with textures. The trouble is I have a really tough time finding such models.

There are tons of repositories of 3D models in various formats but it seems that only a small fraction of them have texture coordinates. I'm looking for find some well known stuff like the stanford bunny or the teapot, with texture coordinates.

Anybody know where I can find these?

+2  A: 

GLUT has a function for generating the teapot model with texture coordinates:

void glutSolidTeapot(GLdouble size);

Jim Buck
+1  A: 

You can use any DCC app ( e.g. the free, and only slightly annoying Blender ) to create UV coordinates for a model, assuming it reads/writes the formats you're interested in.

Andy J Buchanan