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-04-07Use BKE_edgehash_ensure_p where possibleCampbell Barton
2015-02-06cleanup: styleCampbell Barton
2015-02-06Fix T43578: Beauty Triangulation would hang in infinite loop, due to float ↵Bastien Montagne
rpecision issue. Only recompute if cost is below -FLT_EPSILON, we can get cases where both cases generate very tiny negative costs (see 'Cylinder.004' mesh in .blend attached to report).
2014-12-27Fix T43034: beautify-fill leaves zero area tri'sCampbell Barton
2014-12-26cleanup: use cross_tri_v2 when area isn't needed.Campbell Barton
2014-12-17Docs: comments (hash table & beauty fill)Campbell Barton
2014-12-10Fixes for compilation with msvcSergey Sharybin
MSVC doesn't like caling macro argument f when using float values in the macro, it simply replaces the f in the float value with the argument.. CMake compilation still fails because of 77785ce70807, numpy is never getting unpacked.
2014-12-09Fix T42630: Triangulate returns invalid face-mapCampbell Barton
Triangulate with beautify caused a bug when there were existing edges could make the bmesh-operator return an invalid face-map. Now the beauty is calculated on the 2d-tri's resulting from polyfill, its simpler and faster.