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-28Cleanup: redundant checksCampbell Barton
2015-04-25Cleanup: use 8 space indent for multi-line argsCampbell Barton
2015-04-13GHash: use unsigned int for ghash_sizeCampbell Barton
2015-04-12BMesh: minor optimization counting adjacent dataCampbell Barton
add BM_***_count_is_over(), _count_is_equal() Useful if we only want to know if the count is a smaller value.
2015-04-11BMesh: intersect was using ptr hash for int keysCampbell Barton
2015-04-07Fix for own last commitCampbell Barton
resolved bug but wasn't correct
2015-04-07Fix T44258: Can't select similar regionsCampbell Barton
2015-04-06Use BKE_ghash_ensure_p where possibleCampbell Barton
2015-04-05Fix T44270: Similar face region crash /w wire edgeCampbell Barton
2015-03-16Cleanup: warningsCampbell Barton
2015-03-16Fix T39184: Multisegment bevel profiles should curve in-plane sometimes.Howard Trickey
When the multisegment profile joins two unbeveled edges, all in the same plane, users desire that rather than the current behavior of linear interpolation between those edges, the profile should curve. This changes behavior to do that. The old behavior can be obtained by setting the profile parameter to 0.25, if desired.
2015-03-05Fix T43898, correct all uv layers in bevel, not only the active oneAntony Riakiotakis
2015-02-23Fix mismatch (missing 'const' to mactch funcs declarations).Bastien Montagne
Was breaking windows compile, reported by bdancer over IRC, thanks. Also, quite some annoying 'unused vars' warnings (debug-only vars).
2015-02-23Fix error in recent vert/edge-slide commitsCampbell Barton
`CustomData_bmesh_interp_n` was expecting the 'dest' arg not to have its offset applied. This was a bit confusing since the source args have it applied, and in some cases we only have the destination with the offset.
2015-02-23CustomData: const correctness for interp()Campbell 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-02-12Fix part 1 of T43239, multisegment vertex bevel on 2-edge vertices.Howard Trickey
Implemented multisegment rounding of vertices with two edges. Works both with wire edges and edges that have one or two faces attached.
2015-02-11cleanup: style/indentationCampbell Barton
2015-02-02BMesh: tool to ensure all faces are convexCampbell Barton
Access from Mesh -> Cleanup
2015-01-31Compiler warning: double-promotionCampbell Barton
2015-01-13Cleanup: fixes for building with recent clangCampbell Barton
2015-01-08cleanup: styleCampbell Barton
2015-01-06Fix T43137: vertex bevel percent mode wasn't implemented.Howard Trickey
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-18Quiet warning (harmless)Campbell Barton
2014-12-17Docs: comments (hash table & beauty fill)Campbell Barton
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.
2014-12-09Cleanup: remove scanfill define for polyfill codeCampbell Barton
also rename vars which were previously used for scanfill.
2014-12-02Cleanup: style & de-duplicateCampbell Barton
2014-11-22Math Lib: add constant: M_SQRT1_3 1/sqrt(3)Campbell Barton
2014-11-21Cleanup: typoCampbell Barton
2014-11-16Cleanup: use BLI_listbase_count_ex to avoid redundant loopingCampbell Barton
2014-11-16Cleanup: use BLI_listbase_*** prefix for count,sort,sort_rCampbell Barton
2014-11-06Correct recent refactor (use generic callback)Campbell Barton
2014-11-03BMesh: arg reorderCampbell Barton
2014-11-01Cleanup/fix from latest coverity report.Bastien Montagne
Mostly harmless things, though the 'multires' error was a real bug.
2014-10-29Cleanup: warnings, typosCampbell Barton
2014-10-15Bevel modifier: Add weight support for vertices bevelling.Bastien Montagne
Nothing to say here, really, just a couple of lines to add to get it working...
2014-10-10Cleanup: use bool and const argsCampbell Barton
2014-10-06Quiet warning on 32bit systemCampbell Barton
2014-10-03Comments: note on bmesh_region_matchCampbell Barton
also correct buffer type
2014-09-29Fix for a build error with VS 2013.Tamito Kajiyama
2014-09-28BMesh: remove point-in-face test for bisectCampbell Barton
instead track inside/outside state while stepping over intersections.
2014-09-27Cleanup: typoCampbell Barton
2014-09-26Fix ocmpilation error with strict flags after the recent commitSergey Sharybin
2014-09-26BMesh: select similar regionsCampbell Barton
Select operator that takes multiple selected face regions and selects any number of matching regions (when they have distinguishing features to isolate them). UI access next.