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-28style cleanupCampbell Barton
2013-08-27ghash/bli-listbase edits, rename BLI_ghash_pop -> BLI_ghash_popkey (since it ...Campbell Barton
2013-08-26replace hashes with sets where possible.Campbell Barton
2013-08-25use ints for ghash/edgehash flags, since its allocated theres not much point ...Campbell Barton
2013-08-24ghash: reserve size when its known or can be guessed close enough.Campbell Barton
2013-08-24correct error in face walker (was inserting into the wrong ghash which was im...Campbell Barton
2013-08-23fix leak in BM_face_split() with multires if the split failed.Campbell Barton
2013-08-23add dissolve option to triangle fill operator, running dissolve after scanfil...Campbell Barton
2013-08-23optiona for bmesh triangle fill operator to take a normal argumentCampbell Barton
2013-08-23edits to new symmetrize toolCampbell Barton
2013-08-22new bmesh operator bisect_plane, cuts a mesh in half, takes a user defined pl...Campbell Barton
2013-08-22bmesh duplicate operator: add vertmap output slot.Campbell Barton
2013-08-21rename recently added BLI_ghash_assign() -> BLI_ghash_reinsert()Campbell Barton
2013-08-21fix for bad mistake in recently added BM_face_create_verts functiofix for bad...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-21fix own regression [#36443] Vertex to UV index doesn't match with 2.68aCampbell Barton
2013-08-20fix [#36352] Inset individual, uncheck "select outer" selects zero facesCampbell Barton
2013-08-20fix incorrect docs [#36518] Vector.rotate() does not return value as documentedCampbell Barton
2013-08-19Dyntopo:Antony Riakiotakis
2013-08-19fix [#36481] When "Rip Edge" cannot be completed, Blender crashes weirdlyCampbell Barton
2013-08-19style cleanup: indent/whitespaceCampbell Barton
2013-08-18bmesh improvements to face creation.Campbell Barton
2013-08-18improved BM_face_copy_shared to copy from more possible connected loops and a...Campbell Barton
2013-08-18add hash function BLI_ghash_assign, BLI_edgehash_assignCampbell Barton
2013-08-17bmesh api internal changesCampbell Barton
2013-08-17remove unused args from edgenet fill (since rewrite, but they weren't used be...Campbell Barton
2013-08-17change CHECK_TYPE_INLINE macro not to add the pointer in the macro.Campbell Barton
2013-08-16new bmesh queries BM_face_exists_overlap, BM_face_exists_overlap_subsetCampbell Barton
2013-08-14bmesh utility functions for storing an editselection after another in the list.Campbell Barton
2013-08-14fix own error in BM_mesh_calc_edge_groups() was clearning wrong dirty-index f...Campbell Barton
2013-08-13fix for bug in rip tool, isolated verts would remain selected after ripping.Campbell Barton
2013-08-13fix own regression, rip tool wasn't handling selection.Campbell Barton
2013-08-13switch arg order for BM_elem_select_copy(), would like to make this constant ...Campbell Barton
2013-08-13bmesh: simplify mode check for setting the edge selectionCampbell Barton
2013-08-13bmesh_vert_separate: remove unused return valueCampbell Barton
2013-08-13bmesh_edge_separate: avoid counting radial loops when splitting edges, we onl...Campbell Barton
2013-08-05Fix build warnings with clang and UNUSED_RESULT_ATTR (attribute declaration m...Brecht Van Lommel
2013-08-04code cleanup: replace strncpy -> BLI_strncpy, skip first 2 chars when making ...Campbell Barton
2013-08-03correct edgeloop tagging assigning an uninitialized value, also remove redund...Campbell Barton
2013-08-03correct invalid sizeof() use in bmesh (harmless in practice)Campbell Barton
2013-08-03code cleanup: bmesh use 'const' for query functions.Campbell Barton
2013-08-03code cleanup: replace bmesh_radial_face_find -> BM_edge_in_faceCampbell Barton
2013-08-01use bmesh for loop macros for looping over mesh verts/edges/facesCampbell 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-28new mesh tool for cleaning up meshes, splits up non-planar faces while they e...Campbell Barton
2013-07-28move alloca define into its own header since its not related to BLI_arrayCampbell Barton
2013-07-28bmesh: skip error checks when building in release mode (minor speedup),Campbell Barton