mod_meshtools

Can anyone point me to a Reference or any form of Documentation? I’m kinda lost in the facesuv and uvcoords parameters of the create_mesh() function…

Thanks!

http://jmsoler.free.fr/didacticiel/blender/tutor/cpl_python_uvmap.htm

I wrote that module a while ago, and I should have commented it back then!

uvcoords is simply a list of the uv coords (2 floats) preceeded by the number of uvcoords (1 long). It can optionally have the duplicates removed to save space.

facesuv is a list of the uvcoords stored per-face (indices only are stored in this list).

See the trueSpace module for more info.

Thanks for the link!

Thanks for the info and for writing the module! :smiley: