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
2013-11-25Code Cleanup: rename vars for detecting change to be more consistentCampbell Barton
rename change/is_change/is_changed/modified -> changed also use bools over int/short/char and once accidental float.
2013-11-11Fix [#37388] Grid fill crashes blender in specific situation.Bastien Montagne
With some geometries, we can have a valid first path, without being able to find a valid second one, added needed check.
2013-10-22style cleanupCampbell Barton
2013-09-08code cleanup: quiet warningsCampbell Barton
2013-09-07use strict flags for gridfill, use unsigned ints.Campbell Barton
2013-09-07changes to grid fillCampbell Barton
- use 4 weights for vertex customdata blending (was previously only using 2) - option for simple blending, which blends locations using weights too and doesn't attempt to maintain the shape, useful for flat surfaces or times when keeping the shape gives odd results.
2013-09-06grid-fill support for customdata, so filled areas have UV's, vertex colors ↵Campbell Barton
etc interpolated from the boundary. also support cases where only some of the boundary edges have faces to interpolate from.
2013-08-21bmesh api cleanup, face creation args now accept an example face (as with ↵Campbell Barton
vertex and edge), also replace BM_face_create_quad_tri_v with BM_face_create_verts
2013-08-21use BM_CREATE_NOP arg rather then zero, with pointer and bool args in either ↵Campbell Barton
side in some cases it gets a bit confusing. also correct edge-rotate where bool->flag conversion worked by accident.
2013-06-04fix own error with removing vertex weights not checking for non-existing ↵Campbell Barton
weights. however this exposed some other odd behavior. removing a vertex group would add one if not found but only for meshes, not lattices. now just skip removal if not found.
2013-05-20code cleanup: rename bmesh operator files to be more consistentCampbell Barton