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
2012-05-05code cleanup: function naming, use BKE_*type* prefix.Campbell Barton
2012-05-05code cleanup: function naming for BLI functions.Campbell Barton
2012-05-04fix [#31235] Limited Dissolve problemsCampbell Barton
2012-05-04Small hull bmop fix, distance check from plane needs absolute value.Nicholas Bishop
2012-05-03style cleanup: formatting and some float/double promotionCampbell Barton
2012-05-03Fix #31139: fractal mesh subdivide was only working along normal where previo...Brecht Van Lommel
2012-05-03Initialize an input in bmo_hull.Nicholas Bishop
2012-05-02bmesh: use fixed stack size for face flipping array.Campbell Barton
2012-05-02Fix #31230: Grid primitive changes size with changing resolutionSergey Sharybin
2012-05-02source code style checker to, (similar to pythons pep8 checker)Campbell Barton
2012-05-01style cleanup: guys - set your editors to tabs!Campbell Barton
2012-05-01Fix own error in BM_mesh_remap(), forgot to remap edge pointers in disk_links...Bastien Montagne
2012-04-30bmesh - python apiCampbell Barton
2012-04-30code cleanup: quiet clang warnings, these would likely never but wont hurt to...Campbell Barton
2012-04-30style cleanup: edits to convex hull.Campbell Barton
2012-04-29Add convex hull operator (bmesh operator and wm operator.)Nicholas Bishop
2012-04-29style cleanup: whitespace / commasCampbell Barton
2012-04-29wireframe option to crase edges at the hub, much nicer subsurfCampbell Barton
2012-04-29bmesh: new wireframe toolCampbell Barton
2012-04-28bmesh api functions, not used yet:Campbell Barton
2012-04-28style cleanup: format 'for' loop macros the same as for loops, some renaming ...Campbell Barton
2012-04-28fix memory leak in BM_face_copy()Campbell Barton
2012-04-28style cleanup: changes to brace placement / newlines - for/while/if/switchCampbell Barton
2012-04-26fix for bevel modifier creating invalid geometry - simply tell BM_face_split(...Campbell Barton
2012-04-26code cleanup: bmesh comments/todos, no functional changes.Campbell Barton
2012-04-26bmesh: inset tool depth used bad normals for edge verts. Campbell Barton
2012-04-25code cleanup: edge slide code had oddly named variables, added some comments ...Campbell Barton
2012-04-25code cleanup: no functional change - had both EDBM_editselection_* and BM_edi...Campbell Barton
2012-04-24fix [#30997] Bevel angle option is broken (bevel vertex only)Campbell Barton
2012-04-24workaround for vertex bevel modifier failing since the BMesh update.Campbell Barton
2012-04-24- remove unneeded len_v3v3 in bevel codeCampbell Barton
2012-04-24fix own error with subdivision (broke icosphere), also noticed icosphere vani...Campbell Barton
2012-04-23- fix for python freeing its own bmesh clearing the global mirror cache.Campbell Barton
2012-04-23code cleanup: bmesh subdivide code - BM_mesh_esubdivideflag() & "esubd" bmesh...Campbell Barton
2012-04-23code cleanup: better use of BLI_array_* (grow in larger steps where possible)...Campbell Barton
2012-04-23code cleanup: change C naming convention (so py and C api match), eg:Campbell Barton
2012-04-22style cleanup: commentsCampbell Barton
2012-04-21style cleanup: correct typosCampbell Barton
2012-04-21fix [#31049] New Faces (F) always solid shadedCampbell Barton
2012-04-20fix for error using uninitialized variable with shape key conversion.Campbell Barton
2012-04-20code cleanup: prefer BM_face/edge/vert_select_set() over BM_elem_select_set()...Campbell Barton
2012-04-20knife tool alpha values where being set to zero (intersection points weren't ...Campbell Barton
2012-04-20rip tool wasnt working on a single edge selection in some cases (own error in...Campbell Barton
2012-04-20add asserts for invalid iteratpr values so we can catch them in debug mode.Campbell Barton
2012-04-20bmesh: improve rip toolCampbell Barton
2012-04-20Fixed crash in iter api, triggered by calling index_update() on the loop py s...Joseph Eagar
2012-04-19bmesh inset: add depth option (make use of relative and even offset options)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-19code cleanup: first step to replace BM_ITER BM_ITER_INDEX macros.Campbell Barton