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
2013-03-25More new data names translation (most cases should be covered now).Bastien Montagne
Also done a few cleanup here and there...
2013-03-14use BLI_strncpy_rlen() rather then BLI_snprintf() when no formatting is needed.Campbell Barton
also replace sprintf with strcpy when no formatting is done.
2013-03-01style cleanup: braces with multi-line statements, also add some comments.Campbell Barton
2013-02-27code cleanup: unused argCampbell Barton
2013-02-14tweak vertex group clean limit, it couldn't be set to zero, and you may want ↵Campbell Barton
to remove only zero weights.
2013-01-22fix [#33889] Unexpected weights after parenting with Empty GroupsCampbell Barton
out of range dvert's are now cleared before adding new-empty groups.
2013-01-17"Fix" for [#33903] Wrong description string in "remove vertices from vertex ↵Bastien Montagne
group" function - just making the tooltip describe both possible actions by this op!
2012-12-22code cleanup:Campbell Barton
make vertex/weight flag names consistent ME_EDIT_VERT_SEL --> ME_EDIT_PAINT_VERT_SEL ME_EDIT_PAINT_MASK --> ME_EDIT_PAINT_FACE_SEL also remove unused header BLO_soundfile.h
2012-12-22code cleanup and minor changesCampbell Barton
- use DummyRNA_NULL_items to replace empty enums. - replace calloc with malloc in copy_dverts since its copied over after. - add wmGesture->userdata, so operators that use gestures have somewhere to store their own data (not used yet).
2012-12-18style cleanupCampbell Barton
2012-12-16Reverting rev 53044 because it broke something and was wrong.Ove Murberg Henriksen
I also added comment to avoid this happening in the future.
2012-12-16Fixing name of a function to be consistent with the rest of the code.Ove Murberg Henriksen
2012-12-16Changed some comments to make more sense.Ove Murberg Henriksen
2012-12-16Bugfix: [#33513] Transfer weights mixing up.Ove Murberg Henriksen
Removal of this line fixed the bug. But! I suspect it opens up for an excaption. I will try to identify the exception and handle it in a different way.
2012-12-15Pure style cleanup.Ove Murberg Henriksen
2012-12-12Use own list of actions for Vertex Group Lock operator instead of reusing ↵Sv. Lockal
Select All actions. Previous actions and descriptions were confusing, e. g. UnLock All used the description of Deselect All.
2012-11-30Fix transfer weight tool enum properties all showing question mark icons,Brecht Van Lommel
these should have no icons.
2012-11-25Fix #33296: uv editing did unnecessary outliner redraw, giving slowdown.Brecht Van Lommel
2012-11-13disable applying constructive modifiers when in sculpt mode with multi-res ↵Campbell Barton
data, since this would crash. also rename modifier_sameTopology -> modifier_isSameTopology(), modifier_nonGeometrical -> modifier_isNonGeometrical()
2012-11-13fix [#33143] Exporter crash since 2.64Campbell Barton
2012-11-02all remove functions now invalidate the RNA objects passed, to help script ↵Campbell Barton
authors to avoid bugs with accessing removed data.
2012-10-27style cleanupCampbell Barton
2012-10-26Big i18n commit: add "reports" from bmesh/readfile/tracking/dynapaint (and a ↵Bastien Montagne
few others), and another bunch of UI messages tweaks/fixes, as well as some BKE_report()<->BKE_reportf()...
2012-10-26style cleanupCampbell Barton
2012-10-23use min_ max_ functions in more places.Campbell Barton
also fix minor error in MOD decimate when the modifier did nothing the reported face count would be wrong.
2012-10-21A final bunch of UI messages fixes and tweaks, and some ↵Bastien Montagne
BKE_report()<->BKE_reportf() fixes.
2012-10-21style cleanup: bge, switch statements mostly.Campbell Barton
also left bmesh decimator on in previous commit.
2012-10-21style cleanup: commentsCampbell Barton
2012-10-14More UI messages and BKE_reportf->BKE_report fixes...Bastien Montagne
2012-10-12quiet some -Wshadow warningsCampbell Barton
2012-10-11style cleanup:Campbell Barton
also add helper makefile targets: * tbz - makes a tar.bz2 of an svn export * test_style_qtc - outputs style checks in qtc task format.
2012-10-10Its silly to use "verify index" because it will add non existing and remove ↵Ove Murberg Henriksen
them afterwards.
2012-10-10Changing clear weight code from "assigning 0" to "removing".Ove Murberg Henriksen
Its less efficient but better practice. + Some style clean.
2012-10-10transfer weight's now operates on selected vertices (when vertex select is ↵Campbell Barton
enabled).
2012-10-09style cleanup: also made functions staticCampbell Barton
2012-10-09Adding weightpaint transfer tool.Ove Murberg Henriksen
From: https://svn.blender.org/svnroot/bf-blender/branches/meshdata_transfer Bachelor project at Narvik university collage (Norway). By Ove M Henriksen (Cyborgmuppet) Thesis will be published at Cyborgmuppets blender page. Thanks for letting me participate!
2012-10-09Fix based on code review Issue 6347064meshdata_transferOve Murberg Henriksen
2012-10-09patch [#31919] limit the number of bone deform weights per vertex. Many game ↵Campbell Barton
engines require a limit of 4. from Kesten Broughton (kestion) Usage: In weight paint mode, select the mesh to have its weights culled. Click on "Limit Weights" button. A sub-panel will appear "Limit Number of Vertex Weights" with a slider field "Limit" which you can set to the appropriate level. The default level is 4, and it gets executed upon pressing "Limit Weights" so you will need to do an "undo" if your max bone limit is above 4. The checkbox "All Deform Weights" will consider all vertex weights, not just bone deform weights.
2012-10-09svn merge ^/trunk/blender -r48592:HEADOve Murberg Henriksen
2012-09-09style cleanup:Campbell Barton
also remove some redundant conversions int -> short -> int
2012-09-05fix [#29431] "Normalize All" from Weight Tools don't work correctlyCampbell Barton
2012-09-03remove vertex groups from a mesh or lattice when this there are no remaining ↵Campbell Barton
vertex groups. This was dont in edit-mode but not object-mode.
2012-08-31Fix part of #32376: mirror vertex groups with flip group names did not keepBrecht Van Lommel
the same vertex group active.
2012-08-21fixed [#32373] Copy Vertex Group operator copies any value as full 1.0Campbell Barton
2012-08-17fix own error in recent smoothview cleanup, also correct some cross ↵Campbell Barton
references in bmesh docs.
2012-07-21use fabsf when using floats.Campbell Barton
2012-07-07style cleanup: use c style comments in C codeCampbell Barton
2012-07-04response to code review:Ove Murberg Henriksen
http://codereview.appspot.com/6301100/diff/1/source/blender/editors/object/object_vgroup.c
2012-06-19Its now overwriting properly by clearing weights when using replace_mode all.Ove Murberg Henriksen
Reason for not going for suggested "else" on copy in each case is that it would present a paradox. (it would delete weights that got created in some instances)
2012-06-19clenaup. Ove Murberg Henriksen