uvw

How can I set UVs to a Mesh in Blender Python ?

Using Blender 2.49's Python API I'm creating a mesh. I have a list of vertices and a list of face indices. e.g. mesh = bpy.data.meshes.new('mesh') mesh.verts.extend(mVerts) mesh.faces.extend(mFaces) I've noticed MVert's uvco property and MFace's uv property, and added some random values, but I can't see any change when I render. Re...

UV mapping for a dome?

Hi, I am trying to understand how can I change UV mapping of a dome, I need a different texture map projection than this one coded below: protected final void createDome(final float radius) { int lats=16; int longs=16; GL11.glEnable(GL11.GL_TEXTURE_2D); GL11.glBindTexture(GL11.GL_TEXTURE_2D, textures2x4[0].getText...