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
2015-05-28BMesh: util functions to get edge loops from vertsCampbell Barton
2015-04-25correct own error in recent ngon creation editCampbell Barton
2015-04-25Cleanup: use 8 space indent for multi-line argsCampbell Barton
2015-04-25BMesh: simplify BM_face_create_ngonCampbell Barton
2014-09-24Custom Data API: redundant pointer-to-pointer argCampbell Barton
2014-04-26Code cleanup: use 'const' for arrays (bmesh)Campbell Barton
2014-02-02Code cleanup: suffix vars to make obvious they are squaredCampbell Barton
2014-01-17Code Cleanup: move delete funcs out of bmesh_construct.c into own fileCampbell Barton
2013-10-03fix [#36923] Merge / Delete vertices crashes for some meshesCampbell Barton
2013-09-24allocate bmesh data from known sizes where possible (was still using defaults...Campbell Barton
2013-09-06sorting utility functions for simple cases - sorting pointers by float for ex...Campbell Barton
2013-08-23fix leak in BM_face_split() with multires if the split failed.Campbell Barton
2013-08-21bmesh api cleanup, face creation args now accept an example face (as with ver...Campbell Barton
2013-08-21use BM_CREATE_NOP arg rather then zero, with pointer and bool args in either ...Campbell Barton
2013-08-21bmesh api:Campbell Barton
2013-08-18improved BM_face_copy_shared to copy from more possible connected loops and a...Campbell Barton
2013-08-13switch arg order for BM_elem_select_copy(), would like to make this constant ...Campbell Barton
2013-08-03correct invalid sizeof() use in bmesh (harmless in practice)Campbell Barton
2013-07-28move alloca define into its own header since its not related to BLI_arrayCampbell Barton
2013-07-25mesh tool to fill in holes, added in mesh clean menu,Campbell Barton
2013-07-25fix for face normal flipping calculation.Campbell Barton
2013-07-24internal bmesh api change: BM_elem_attrs_copy() no longer copies the selectio...Campbell Barton
2013-07-21code cleanup: add break statements in switch ()'s, (even at the last case).Campbell Barton
2013-07-11add BM_elem_attrs_copy_ex() which can take a flag arg to define which flags s...Campbell Barton
2013-07-11fix for problem with edge slide where it would stop shapekey modifier from be...Campbell Barton
2013-05-26code cleanup: typosCampbell Barton
2013-05-26bmesh: copy function - replace use of array reallocations with alloca in a st...Campbell Barton
2013-05-09can't use alloca in inline functions (fills up stack - I thought compiler wou...Campbell Barton
2013-05-08minor speedup for bmesh - add CustomData_bmesh_free_block_data(), useCampbell Barton
2013-04-07Fix for [#34898] Typo in error message of mathutils.VectorThomas Dinges
2013-03-27api cleanup: split part of BM_face_create_ngon_vcloud() into a new function B...Campbell Barton
2013-01-14use booleans for bmesh api.Campbell Barton
2013-01-03code cleanup: BM_face_create_ngon()Campbell Barton
2013-01-03fix [#33689] Crash with decimate modifierCampbell Barton
2012-12-19use BM_face_create() over BM_face_create_ngon() in bevel and extrude individu...Campbell Barton
2012-12-19bmesh optimization: use BM_face_create() rather then BM_face_create_ngon() in...Campbell Barton
2012-12-19fix [#33606] Adding the Decimate modifier will crash BlenderCampbell Barton
2012-12-11replace BLI_array_fixedstack_declare with() new macro BLI_array_alloca() whic...Campbell Barton
2012-11-29fix [#33029] Applying modifier leaks memoryCampbell Barton
2012-11-19bmesh: BM_verts_in_face was using bmesh operator flag which is no longer ensu...Campbell Barton
2012-11-18bmesh: move internal API flags out of BMFlagLayer, into BMHeader which was be...Campbell Barton
2012-11-12BM_iter_as_arrayN() can now take an optional existing array argument, useful ...Campbell Barton
2012-11-09style cleanup: indentationCampbell Barton
2012-10-27fix for filled rip copying loop customdata (fix in BM_edge_other_loop broke it)Campbell Barton
2012-10-01add compiler hints that failing to create a bmesh face is unlikely.Campbell Barton
2012-09-19fix for missing NULL check in init_render_texture() (possibly own fault), als...Campbell Barton
2012-08-13style cleanup: use <pre> for doxygen ascii art Campbell Barton
2012-05-22fix [#31489] EdgeSplit modifier prevents All Edge to be work correctly since ...Campbell Barton
2012-05-06fix [#31197] Limited dissolve leaves faces/edges/verts behindCampbell Barton
2012-05-03style cleanup: formatting and some float/double promotionCampbell Barton