0

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?

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
shoosh
  • 76,898
  • 55
  • 205
  • 325

2 Answers2

3

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

void glutSolidTeapot(GLdouble size);

Jim Buck
  • 20,482
  • 11
  • 57
  • 74
2

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
  • 1,952
  • 14
  • 13