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-11-18bmesh: lazy initialize bmesh tool flag pool, has the advantage that modifiers...Campbell Barton
2012-10-24add CDDM_from_bmesh(), avoids using BMEditMesh in modifiers.Campbell Barton
2012-09-15quiet -Wmissing-prototypes warnings, and enable this warning by default for C...Campbell Barton
2012-09-04code cleanup: move file string defines into BLI_path_utils.h, BKE_utildefines...Campbell Barton
2012-08-13style cleanup: use <pre> for doxygen ascii art Campbell Barton
2012-07-17code cleanup: spellingCampbell Barton
2012-05-19code cleanup: use TRUE/FALSE rather then 1/0 for better readability, also rep...Campbell Barton
2012-05-16Code cleanup: simplify standard GHash creation.Nicholas Bishop
2012-05-13code cleanup: minor improvements to float/vector usage.Campbell Barton
2012-05-03style cleanup: formatting and some float/double promotionCampbell Barton
2012-04-26fix for bevel modifier creating invalid geometry - simply tell BM_face_split(...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-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-19fix bevel edge angle (wasnt hooked up to new code), vertex-bevel angle isnt w...Campbell Barton
2012-04-19style cleanup: bevel code, also remove unneeded flag setting.Campbell Barton
2012-04-18fix [#30921] Bevel modifier's is not work correctly with bevel weightsCampbell Barton
2012-04-18more replacement for BM_edge_face_count() use.Campbell Barton
2012-04-18fix error in last commit. Misunderstood BM_vert_is_manifold(), added some com...Campbell Barton
2012-04-18fix for own error in recent scanfill updates, scanfill can hang if run on a p...Campbell Barton
2012-04-04add option not to delete edges/verts when joining faces, needed so we can loo...Campbell Barton
2012-04-03Fix #30791: BMEdge.is_manifold also returned true for edges with only one faceBrecht Van Lommel
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and e...Campbell Barton
2012-03-24code cleanup: move bmesh inline funcs to headers (avoids compiling the C files).Campbell Barton
2012-03-22code cleanup: remove BMesh * args from query functions which don't need itCampbell Barton
2012-03-20style cleanupCampbell Barton
2012-03-20Quiet warnings about unused functions and variables.Nicholas Bishop
2012-03-17Fix 30562: bevel was infinite looping when adjacent faces had incompatible no...Howard Trickey
2012-03-16bmesh: being back bevel modifier from 2.62 stable.Campbell Barton
2012-03-13style cleanupCampbell Barton
2012-03-08building without python works again, cleanup bmesh include paths (cmake and s...Campbell Barton
2012-03-06fix for own error in edge-rotate keeping edge customdata - this was crashing ...Campbell Barton
2012-03-05edge rotate now keeps edge properties (like seam, crease, bevel weight.. etc)Campbell Barton
2012-03-02style cleanupCampbell Barton
2012-03-02bmmesh api - use struct rather than int[4] to initialize mesh sizes.Campbell Barton
2012-03-01Code Cleanup: remove bmesh_radial_loop_next() function,Campbell Barton
2012-02-29add an assert for inserting an egde with the same vertices and a BMESH_TODO f...Campbell Barton
2012-02-28code cleanup: de-duplicate bmesh face creation code,Campbell Barton
2012-02-28Code Cleanup:Campbell Barton
2012-02-27minor bmesh api naming edits.Campbell Barton
2012-02-27Code Cleanup:Campbell Barton
2012-02-27style cleanupCampbell Barton
2012-02-26bmesh api name change, add _count suffix for BM_*_share functions.Campbell Barton
2012-02-26bmesh - remove faces with <3 sides after dissolve/collapse (most tools alread...Campbell Barton
2012-02-26change vertex dissolve not to collapse edges when its only connected to 2, ra...Campbell Barton
2012-02-26fix for a bug in bmesh_jekv (and its main caller BM_vert_collapse_faces).Campbell Barton