blending between textured faces??

Hi

please does Blender (I mean by Python scripting) have any ability how to produce interpolated texture from neighbouring ones or at least if it there is any option how to blend between two neighbouring textures (faces)?

Thank you
Jiri

not without making more faces

and you may have to load the texture yourself (I forget if python has access to image data) in which case you will have trouble finding the whole path of the image, and you will need your own image-loading code.

Yes that’s true, it seems that more faces are necessary for blending.
Image loading I solved already by:

path = “/home…”
fileName = “%s%d” % (path,name)
im = Image.Load(fileName)
face.image = im

…and it works pretty well

Jiri