Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-04fix for missing NULL check in bmesh.from_mesh(), bug [#30446]Campbell Barton
2012-02-29bmesh py api - initial support for selection history.Campbell Barton
2012-02-24bmesh python api - add/improve rst docstrings.Campbell Barton
2012-02-23bmesh py api, new submodulesCampbell Barton
* bmesh.types, just allows access to BMVert, BMEdge etc. * bmesh.utils, so far only added edge_split() function, this module will give access to mesh editing functions.
2012-02-22bmesh py api - generalize bmesg sequences to use the iterator type and ↵Campbell Barton
optionally another bmesh element. This allows BMFace.verts to be added without defining a new sequence type.
2012-02-22initial bmesh python api.Campbell Barton
corrently allows to create and loop over verts/edges/faces, access selection and selection modes. this is still WIP, access to face, edge verts is still missing, no access to UV's, no access to editing operations yet. When the api is ready it will be documented by sphinx like mathutils, blf, aud.