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 (Collapse)Author
2012-05-24style cleanup: comma placementCampbell Barton
2012-05-17style cleanup: block commentsCampbell Barton
2012-05-12style cleanup: blenkernelCampbell Barton
2012-04-30- improve select grouped prefix/suffix from recent patchCampbell Barton
- added select similar direction (Y axis)
2012-04-29patch [#30834] Quick Hack: Select similar for bones in edit modeCampbell Barton
from Felix Schlitter (dalai) made some changes to select length measurement.
2012-04-28style cleanup: changes to brace placement / newlines - for/while/if/switchCampbell Barton
2012-04-06code cleanup: header cleanup, remove commented workaround for mingw since ↵Campbell Barton
its no longer needed.
2012-03-29fix [#30715] bmesh: select linked not ignoring hidden verts/edges/facesCampbell Barton
add optional flag to ignore hidden elements. also remove loop mask flag - since it wasnt used and vert/edge/face is enough.
2012-03-20rename define BM_INLINE -> BLI_INLINE to avoid confusion with bmesh defines.Campbell Barton
2012-03-20style cleanupCampbell Barton
2012-03-20style cleanupCampbell Barton
2012-03-20compile fix: linux BLI_gzopen declare was conflicting.Campbell Barton
2012-03-20Fix #30531: mirror modifier with vertex groups did not add both the left andBrecht Van Lommel
right groups to merged vertices, only one. This made the result asymmetric, now merged vertices will be part of both groups with half weight.
2012-03-18spelling cleanupCampbell Barton
2012-03-09style cleanup: spelling.Campbell Barton
also remove large, duplicate comments from sunsky.h
2012-03-01Spelling CleanupCampbell Barton
2012-02-27style cleanup (mostly whitespace)Campbell Barton
2012-02-05Code Cleanup: minor changes & sync with bmesh.Campbell Barton
2012-01-11use BLI_strncpy and BLI_snprintf when the size of the string is known.Campbell Barton
fix for sequencer unique naming which was missed with string length update.
2011-12-17Quite some compiler warnings...Bastien Montagne
2011-12-15minor vertex group editsCampbell Barton
* when freeing a deform weight, use one less memcpy call. * vgroup_delete_object_mode(), was looping on the deform verts twice when it didn't need to.
2011-12-15more vertex weight edits,Campbell Barton
* replace inline loops with api calls. * change constraints so verts with 0.0 weight are ignored like they are everywhere else.
2011-12-15vertex group changes,Campbell Barton
use more api functions more (some vertex group editing functions were copied about), also make some functions int oapi calls. - remove defgroup_find_index(), use BLI_findlink instead since they both work the same way. - move static function getNearestPointOnPlane() to BLI_math api function closest_to_plane_v3() - ED_vgroup_give_parray() added option to return an array where unselected verts are NULL (simplifies code & works for lattice when it didn't before). - more consistant error checking of ob->actdef.
2011-12-09went over all uses of MDeformWeight.def_nr and made sure the value is ↵Campbell Barton
clamped when used as an array index.
2011-12-09another possible fix for bug [#29521], all callers of flip_side_name(...), ↵Campbell Barton
assumed it initialized the string however for 1-2 length names it returned without doing anything. in most cases the caller would then check if the name was different to see if the name was flipped, incorrectly comparing the uninitialized string with the original name.
2011-12-08minor refactor of vertex group functions,Campbell Barton
- defvert_remove_index's index wasnt used anywhere, rename to defvert_remove_group - defvert_add_to_group was local in MOD_weightvg_util.c, moved to deform.c and renamed to defvert_add_index_notest real fix coming next...
2011-11-30use consistent naming for deform.c, also moved defvert_remove_index into ↵Campbell Barton
deform.c, was local in modifier code.
2011-11-30fix [#29450] Mirror Vertex Groups issueCampbell Barton
2011-11-01vertex group mirrorCampbell Barton
- now works in vertex select + weight paint mode. - added option not to mirror all vertex groups.
2011-10-31use_verify option to defvert_sync_mapped and defvert_sync was flipped, also ↵Campbell Barton
minor edits to defvert_verify_index() - no functional change.
2011-10-27..and now fix linux build since my windows build fix had a lowercase typoAndrew Wiggin
2011-10-27Fix windows build (__func__ macro needs definition from BLI_utildefines.h on ↵Andrew Wiggin
MSVC)
2011-10-27fix [#29044] applying mirror modifier causes crash; something with vertex ↵Campbell Barton
groups?
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-10header cleanup (no functional changes)Campbell Barton
2011-06-06fix [#27572] Mirror Shapekey and Mirror vertex Group not working for Lattice.Campbell Barton
2011-04-21converted more mixed tab/space indentations to tabs. only whitespace changes.Campbell Barton
2011-04-21whitespace only, no functional change mixed tabs/spaces --> tabs.v2.57aCampbell Barton
2011-02-27doxygen: blender/blenkernel tagged.Nathan Letwory
2011-02-13corrected error from commit r34810.Campbell Barton
2011-02-13fix for warnings from Sparse static source code checker, mostly BKE/BLI and ↵Campbell Barton
python functions. - use NULL rather then 0 where possible (makes code & function calls more readable IMHO). - set static variables and functions (exposed some unused vars/funcs). - use func(void) rather then func() for definitions.
2011-02-13Reverting part of 34810Joshua Leung
The changes here were breaking old rigs, for example the right eyeball in the Sintel rig (which uses the Mirror Modifier and its vertex-group mirroring functionality)
2011-02-13enforce string limits (reported by pedantic checking tools & some developers).Campbell Barton
mostly replace strcpy with BLI_strncpy and multiple strcat's with a BLI_snprintf(). also fix possible crash if CWD isnt available.
2011-02-12fix for more warnings.Campbell Barton
- modifier code was using sizeof() without knowing the sizeof the array when clearing the modifier type array. - use BLI_snprintf rather then sprintf where the size of the string is known. - particle drawing code kept a reference to stack float values (not a problem at the moment but would crash if accessed later).
2010-12-31fix [#25429] Armature modifier and inverted vertex groupCampbell Barton
- the invert flag was only being used for multi-modifier, but there is no reason not to use this in normal cases as well. - Armature modifier RNA name 'vertex_group' was incorrectly named 'vertex_group_multi_modifier' (own fault), confusion was caused by 'invert_vertex_group_multi_modifier' which was correct.
2010-12-03fix for some pedantic warnings.Campbell Barton
2010-11-07de-duplicate unique naming logic, was used in 7 different places, convert ↵Campbell Barton
into a function call.
2010-11-01bugfix [#24477] Can easily create bones with duplicate namesCampbell Barton
- fixed this error 7 different functions (deform groups, uv layers & similar). - support for numbers over 999. - renamed splitIDname() to BLI_split_name_num(), moved to BLI_path_utils
2010-08-22remove inline loops in a few placesCampbell Barton
replace with defgroup_find_name() and BLI_findstring()
2010-07-31- add back prefix for ID lists (LF) for linked and fake user for search fields.Campbell Barton
- remove debug print for left/right name flipping & commented test from the sequencer.