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
2015-05-02Cleanup: bmesh src/dst order in API argsCampbell Barton
2015-05-01Fix a couple of harmless compiler warnings.Brecht Van Lommel
2015-04-30Fix T44484: Edge-split corrupts meshCampbell Barton
Splitting non-manifold edges could produce duplicate edges.
2015-04-13GHash: use unsigned int for ghash_sizeCampbell Barton
2015-04-11BMesh: intersect was using ptr hash for int keysCampbell Barton
2015-02-14Refactor array_utils out of BLI_arrayCampbell Barton
BLI_array.h is for resizing array macros, where as array_utils can operate on any arrays.
2015-01-31Compiler warning: double-promotionCampbell Barton
2015-01-13Cleanup: fixes for building with recent clangCampbell Barton
2014-08-21Fix T41517: BMesh intersect crashCampbell Barton
2014-08-21CleanupCampbell Barton
2014-08-20Correct mistake in recently added intersect toolCampbell Barton
Sorting verts along an edge wasn't working reliably.
2014-08-19Fix for fix (don't guess enum's sign)Campbell Barton
2014-08-18Fix building on some compilers (clang on OSX).Bastien Montagne
Reported and patch by jensverwiebe (jens verwiebe).
2014-08-18BMesh: intersect toolCampbell Barton
Modeling tool to cut intersections into geometry (like boolean, without calculating inside/outside). Faces are split along intersections, leaving new edges selected. Access from Face menu.