Hi List, its been a while since I posted to the list on bmesh python api progress and related issues.
Firstly, I've added a section to our docs which gives some info on how to upgrade scripts as well as some of the differences between the 3 ways to access faces now. http://www.blender.org/documentation/blender_python_api_2_62_2/info_gotcha.html#ngons-and-tessellation-faces One breaking change is that mesh.faces is now called mesh.tessfaces, this is so scripts dont fail silently, either you want to use tessface data - which is a now a polygon cache now and should not be edited since the changes wont apply back to the original mesh or you want to use tessfaces for exporting, --- And a brief update on bmesh docs... Added examples and more descriptions to main BMesh module page * http://www.blender.org/documentation/blender_python_api_2_62_2/bmesh.html The types are better arranges (were hard to follow before) * www.blender.org/documentation/blender_python_api_2_62_2/bmesh.types.html Added customdata access (works different to all our previous mesh api's) * http://www.blender.org/documentation/blender_python_api_2_62_2/bmesh.html#customdata-access Meshes that are not in editmode can now be converted to/from bmesh see BMesh from_object, from_mesh, to_mesh. Added select_history access. * http://www.blender.org/documentation/blender_python_api_2_62_2/bmesh.types.html#bmesh.types.BMEditSelSeq -- - Campbell _______________________________________________ Bf-python mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-python
