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-03-28BMesh: make the context create operator (Fkay) more logical, before calling e...Campbell Barton
2013-03-27api cleanup: replace BMO_vert_edge_flags_count() with more reusable function ...Campbell Barton
2013-03-27fix for mesh face filling when a valid edge-loop was selected but unselected ...Campbell Barton
2013-03-27api cleanup: split part of BM_face_create_ngon_vcloud() into a new function B...Campbell Barton
2013-03-26misc minor changesCampbell Barton
2013-03-26code cleanup: operator headersCampbell Barton
2013-03-18style cleanupCampbell Barton
2013-03-17code cleanup: name mesh functions more consistently, also use bools for mesh ...Campbell Barton
2013-03-17code cleanup: incorrect sized array args, remove some redundant code.Campbell Barton
2013-03-17- ghost-sdl builds again.Campbell Barton
2013-03-16fix for crash when using BM_face_calc_tessellation(), its not ensured that al...Campbell Barton
2013-03-15fix for own bad mistake using alloca in a loop, also knife project wasnt sele...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-03-12use gcc warning -Wredundant-decls, exposes some odd/duplicate declarations wh...Campbell Barton
2013-03-10add STREQ macro (commonly used macro like CLAMP, MAX2, STRINGIFY). Use for so...Campbell Barton
2013-03-09code cleanup: make bmesh var names more consistentCampbell Barton
2013-03-09bmesh: face creation from a single selected vertex/edge, now extends the sele...Campbell Barton
2013-03-09code cleanup: favor braces when blocks have mixed brace use.Campbell Barton
2013-03-08fix null pointer dereference in BM_edge_is_contiguous() (own code).Campbell Barton
2013-03-04patch [#34103] use boolean in path functions and add comments.Campbell Barton
2013-03-02Added typecasts to keep c++ from reporting errorsGaia Clary
2013-02-21code cleanup: remove references to old bevel code (which has been removed for...Campbell Barton
2013-02-19Fix #34249: collapse edges crash blender with a specific meshSergey Sharybin
2013-02-19minor change to own recent commit with transform fcurve centers and some styl...Campbell Barton
2013-02-11style cleanup: also some typosCampbell Barton
2013-02-09add beauty option for triangle fill since you might want to use the initial s...Campbell Barton
2013-02-09fix for is_quad_convex_v3(), getting the dominant axis wasn't accurate enough...Campbell Barton
2013-02-06problem with own changes to triabgulate: calling beauty fill directly would r...Campbell Barton
2013-02-06style cleanup: some warnigs & spelling.Campbell Barton
2013-02-04add BM_edge_is_contiguous(), check for python api.Campbell Barton
2013-02-03style cleanup & some spellingCampbell Barton
2013-02-03fix BM_loop_calc_face_tangent for concave face corners, caused a bug in wire-...Campbell Barton
2013-02-03fix for error in own recent change, sculpt triangulate was done on a bmesh wi...Campbell Barton
2013-02-03fix [#34073] Combined EdgeLoop slides weirdly on even tryCampbell Barton
2013-02-03improve BMesh api use from r54265, no need to do edge lookups from the faces ...Campbell Barton
2013-02-02Remove loose edges created during undo in dynamic-topology sculpt modeNicholas Bishop
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-29Correct fix for r54164, the testcase I was using worked but different edge sl...Campbell Barton
2013-01-28minor optimization - don't do double lookups on vertex mask layer for vert_ma...Campbell Barton
2013-01-28style cleanup: also remove unneeded NULL check.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-21code cleanup: style & warnings.Campbell Barton
2013-01-19use openmp for building bmesh arrays, also replace calloc with malloc.Campbell Barton
2013-01-19minor dyntopo speedup: was doing 2x ghash lookups for BM_log_face_removed(), ...Campbell Barton
2013-01-17optimize bmesh operations that use triangle BMFace's (dyn-topo and mesh conve...Campbell Barton