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-08-20fix incorrect docs [#36518] Vector.rotate() does not return value as documentedCampbell Barton
2013-08-03code cleanup: bmesh use 'const' for query functions.Campbell Barton
2013-07-29add asserts to ensure face normal is up to date.Campbell Barton
2013-07-29bmesh optimization (noted as todo), avoid recalculating normal every time BM_...Campbell Barton
2013-07-28move alloca define into its own header since its not related to BLI_arrayCampbell Barton
2013-07-22optimization: lazy initialize EditDerivedBMesh members vertexNos, polyNos.Campbell Barton
2013-06-27BM_face_legal_splits - perform calculations in 2d (was using 3d vectors for a...Campbell Barton
2013-06-27avoid calling axis_dominant_v3_to_m3 twice from BM_face_legal_splitsCampbell Barton
2013-06-27remove bmesh arg from BM_face_legal_splits(), don't use a bmesh iterator.Campbell Barton
2013-06-03add asserts when scanfilling or triangulating with zero length normal.Campbell Barton
2013-05-28fix [#35509] MedianPoint choice has bad normalsCampbell Barton
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