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-07-25match function names for clip/image spacesCampbell Barton
2012-04-24code cleanup: rename UV functions to closer match bmesh apiCampbell Barton
2012-04-19remove BM_ITER, BM_ITER_INDEX macros, use ELEM or MESH variants only (the ↵Campbell Barton
maceros had unused args in both cases).
2012-04-19style cleanup: BM_ITER / BM_ITER_INDEX / BMO_ITERCampbell Barton
2012-04-13style cleanup: uv editorCampbell Barton
2012-04-03Fix #30796: uv vertex coordinates panel in uv editor incorrectly taking intoBrecht Van Lommel
account selected uvs from hidden faces.
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and ↵Campbell Barton
else if's
2012-03-02code cleanup:Campbell Barton
replace casts: '((Mesh *)ob->data)->edit_btmesh' with 'BMEdit_FromObject(ob)' also minor style edits.
2012-02-20- remove some unused editmesh functions.Campbell Barton
- copy & rename EditMesh stricts for use with scanfill (remove unused members)
2011-10-24svn merge ^/trunk/blender -r41226:41227 .Campbell Barton
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-05-09tag unused arguments, quiet some warningsCampbell Barton
2011-05-09=bmesh= merge from trunk at r36529Joseph Eagar
2011-05-02UV Edit: move uv vertex buttons code to uvedit module. Brecht Van Lommel