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-07code cleanup: more confusion with 0/NULL/falseCampbell Barton
2013-08-05Fix build warnings with clang and UNUSED_RESULT_ATTR (attribute declaration m...Brecht Van Lommel
2013-08-04code cleanup: replace strcpy with BLI_strncpy for fixed size strings, and cor...Campbell Barton
2013-08-04code cleanup: replace strncpy -> BLI_strncpy, skip first 2 chars when making ...Campbell Barton
2013-08-04bmesh: improve limited dissolve resultCampbell 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-02correct error in own recent edits to triangle joiningCampbell Barton
2013-08-01use bmesh for loop macros for looping over mesh verts/edges/facesCampbell Barton
2013-07-30function renaming for own recently added BLI_math functions, suggested by Bre...Campbell 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-28add inline functions getting a single axis from mul_m3_v3()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
2013-07-27code cleanup: typosCampbell Barton
2013-07-27simplify triangle joining and remove use of BLI_array.Campbell Barton
2013-07-27fix for joining face selection after recent api change, also bmo_join_triangl...Campbell Barton
2013-07-27fix for bridge tool selection flushing (after recent api change), also expose...Campbell Barton
2013-07-26fix [#36282] Spin error with non uniform scaleCampbell Barton
2013-07-26use math functions for copying matrix/vector types, also cast const pointers ...Campbell Barton
2013-07-26optimization: call one bmesh operator for rotate (not 3).Campbell Barton
2013-07-25add twist option to bridge tool (for circular loops)Campbell 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-25triangulate and beauty fill also needed changes to selection handling after r...Campbell Barton
2013-07-25correct problem with limited-dissolve not leaving the selection correctly (ca...Campbell Barton
2013-07-24dyn-topo: maintain materials for new faces.Campbell Barton
2013-07-24internal bmesh api change: BM_elem_attrs_copy() no longer copies the selectio...Campbell Barton
2013-07-24code cleanup: use iterator macros, and replace BM_LOOPS_OF_FACE with direct l...Campbell Barton
2013-07-23code cleanup: remove deprecated bevel code (unused since 2.64)Campbell Barton
2013-07-22optimization: lazy initialize EditDerivedBMesh members vertexNos, polyNos.Campbell Barton
2013-07-22old todo, rotate around individual origins now supports connected face/edge i...Campbell Barton
2013-07-22add support for BM_mesh_calc_face_groups to use vertex connectivity (not curr...Campbell Barton
2013-07-21code cleanup: add break statements in switch ()'s, (even at the last case).Campbell Barton
2013-07-19style cleanup: braces/indentationCampbell Barton
2013-07-19code cleanup: remove BLI_array use when extruding individual faces. also use ...Campbell Barton
2013-07-19code cleanup: remove array reallocation in bmesh duplicate function (use alloca)Campbell Barton
2013-07-19enable type limits warning when compiling with gcc.Campbell Barton
2013-07-16correct own incorrect check bmesh edgerin subdivide, also add missing break i...Campbell Barton
2013-07-13fix for bad NULL check in bmo_connect_pair, also remove duplicate checks in i...Campbell Barton
2013-07-11fix [#36100] bevel lost selectionCampbell Barton
2013-07-11Fix bevel when there is a gap in faces around vertex.Howard Trickey
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 bridge tool where the 2 loops overlap (typical use for scanfill), how...Campbell Barton
2013-07-11fix for problem with edge slide where it would stop shapekey modifier from be...Campbell Barton
2013-07-11bm_loop_interp_mdisps was doing multiple lookups in the same pointer in a nes...Campbell Barton