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 (Expand)Author
2013-05-08more optimal method of calculating the normal for the solidify modifier.Campbell Barton
2013-04-15code cleanup: minor BMESH_TODO's, some were left in even though they were don...Campbell Barton
2013-04-05add BM_face_calc_center_mean_weighted() gives much better result at cost of s...Campbell Barton
2013-03-18style cleanupCampbell Barton
2013-03-16fix for crash when using BM_face_calc_tessellation(), its not ensured that al...Campbell Barton
2013-03-13fix for minor glitch in recent addition to create faces from partial selections.Campbell Barton
2013-03-13fix for crash with laplacian smooth when unselected ngons were used, volume c...Campbell Barton
2013-02-19minor change to own recent commit with transform fcurve centers and some styl...Campbell Barton
2013-02-09fix for is_quad_convex_v3(), getting the dominant axis wasn't accurate enough...Campbell Barton
2013-02-02triangulate was checking existance of edges unnecessarily, splitting face alr...Campbell Barton
2013-01-30correction to r54188, also don't attempt to triangulate triangles.Campbell Barton
2013-01-29skip calculating the normal for each face when triangulating, all callers mak...Campbell Barton
2013-01-29Triangulate modifier no longer uses bmesh operator api call, instead add a BM...Campbell Barton
2013-01-21code cleanup: minor changes, replace len_v3 with len_squared_v3 for comparison.Campbell Barton
2013-01-21fix [#33937] Planar decimate + triangulate operator leaves non-triangle facesCampbell Barton
2013-01-17optimize bmesh operations that use triangle BMFace's (dyn-topo and mesh conve...Campbell Barton
2013-01-14use booleans for bmesh api.Campbell Barton
2013-01-10bmesh todo: uv stretch area draw mode wasn't calculating ngon area - added ar...Campbell Barton
2012-12-11replace BLI_array_fixedstack_declare with() new macro BLI_array_alloca() whic...Campbell Barton
2012-12-11own cleanup commit in bmesh branch - removed last letters from ends of some c...Campbell Barton
2012-11-22Fix: Normal maps and triangulate modifier will give incorrect result onAntony Riakiotakis
2012-11-12BM_iter_as_arrayN() can now take an optional existing array argument, useful ...Campbell Barton
2012-11-03code cleanup: float <> double conversion.Campbell Barton
2012-10-23rename api functions...Campbell Barton
2012-09-06code cleanup: BM_face_legal_splits() was doing some redundant assignments.Campbell Barton
2012-09-03Fix knife bug #30764, failure to cut sometimes.Howard Trickey
2012-08-18style cleanup: also correct some doxy commentsCampbell Barton
2012-08-17fix own error in recent smoothview cleanup, also correct some cross reference...Campbell Barton
2012-07-29code cleanup: replace MIN2/MAX2 with minf/maxfCampbell Barton
2012-07-17code cleanup: spellingCampbell Barton
2012-07-06Fix [#32003] Triangulate fails for simple case.Bastien Montagne
2012-06-27style cleanupCampbell Barton
2012-06-24Fix [#31807] Ngon triangulation errorBastien Montagne
2012-05-19code cleanup: use TRUE/FALSE rather then 1/0 for better readability, also rep...Campbell Barton
2012-05-13code cleanup: use vector math function minmax_v3v3_v3() and other minor vecto...Campbell Barton
2012-04-23- fix for python freeing its own bmesh clearing the global mirror cache.Campbell Barton
2012-04-23code cleanup: change C naming convention (so py and C api match), eg:Campbell Barton
2012-04-19code cleanup: remove unused BMesh args.Campbell Barton
2012-04-19remove BM_ITER, BM_ITER_INDEX macros, use ELEM or MESH variants only (the mac...Campbell Barton
2012-04-19style cleanup: BM_ITER / BM_ITER_INDEX / BMO_ITERCampbell Barton
2012-04-16minor speedup for scanfill, dont calculate the normal if its already known - ...Campbell Barton
2012-04-16inline function for "Newell's Method" used for normal calc.Campbell Barton
2012-04-15make ngon_perimeter into a public api function and expose to python.Campbell Barton
2012-04-08code cleanup:Campbell Barton
2012-03-28own error r45225Campbell Barton
2012-03-28code cleanup: (dont include ';' in defines), last commit also missed changes ...Campbell Barton
2012-03-27Fix tweak for #30638: use same BMesh Face area computation functions as Mesh,Brecht Van Lommel
2012-03-26fix #30668 and the rest of #30638.Antony Riakiotakis
2012-03-25Comment out the projection to ngon normal plane when calculating ngon area. T...Antony Riakiotakis
2012-03-25Fix #30638 and part of #30646.Antony Riakiotakis