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
2020-10-02Cleanup: pep8 (indentation, spacing, long lines)Campbell Barton
2020-06-17Fix T76041: Low contrast dirty vertex colors with loose geometryPhilipp Oeser
Add option to normalize vertex colors.
2020-03-22Fix T75018: Dirty vertex colours missing tooltipWilliam Reynish
2020-01-21Docs: describe vertex dirt methodKeith Boshoff
2019-12-16Cleanup: pep8, unused vars, line lengthCampbell Barton
2019-05-09Cleanup: unused args/vars/imports in bl_operatorsCampbell Barton
2019-02-05Cleanup: remove contributors for Python filesCampbell Barton
Following removal from C source code. See: 8c68ed6df16d8893
2018-09-03Cleanup: use single quotes for enum'sCampbell Barton
2018-07-11PyAPI: Use annotations for RNA definitionsCampbell Barton
- Logical use of fields since they define type information. - Avoids using ordered-dict metaclass. Properties using regular assignments will print a warning and load, however the order is undefined.
2018-06-26Cleanup: pep8 function indentationCampbell Barton
2018-02-09Paint Dirt: remove operator call from PythonSybren A. Stüvel
Instead of calling an operator I just call `collection.new()`. Moving the code into a separate function also simplifies it. In its new form there is also no undefined behaviour when me.vertex_colors is non-empty but without active layer.
2018-02-09Paint Dirt: some small fixesSybren A. Stüvel
- normalize → average the vector: the vector isn't normalized here, because it doesn't necessarily becomes unit length. Instead, the sum is converted to an average vector. - angle is the acos()…: the dot product between the vertex normal and the average direction of the connected vertices is computed, and not the opposite. - The initial `con` list was discarded immediately and replaced by a new list. - File didn't end with a newline.
2017-03-18PyAPI: remove bpy.utils.register_module()Campbell Barton
In preparation for it being removed, see: T47811
2015-01-29cleanup: pep8Campbell Barton
also remove empty class parenthesis
2015-01-26Fix T43345: Dirty Vertex Colors - odd behaviorCampbell Barton
was cancelling when the dynamic range was zero, but gave odd behavior, using the last value, not the values from the UI.
2014-08-15Fix T41454: Command "Dirty Vertex Colors" prompts Python error.Bastien Montagne
2014-04-24Code cleanup: unused python vars & importsCampbell Barton
Use frosted rather then pyflakes
2014-02-18Python: remove redundant len() useCampbell Barton
2013-06-27pep8 cleanupCampbell Barton
2013-04-20code cleanup: minor improvements to scripts.Campbell Barton
- make wm-property operators use INTERNAL option. - make console use str.expandtabs() rather then replacing tab->spaces.
2013-04-15add back attribution field from script.Campbell Barton
2013-01-03fix [#33715] Dirty Vertex Colors display problem since 2.65aCampbell Barton
2012-04-13bmesh todo: vertex dirtmap now working again.Campbell Barton
also renamed Polygon helper property from 'loops' to loop_indices
2012-03-17Minor UI messages fixes, and enabling i18n for all modifier_setError() error ↵Bastien Montagne
messages.
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-20A big set of UI messages fixes and tweaks! No functional changes.Bastien Montagne
2011-10-17correct spelling errors in commentsCampbell Barton
2011-08-19py style change only - make property definitions consistentCampbell Barton
2011-08-12import common classes from bpy.types, saves ~1000 python getattrs on startup.Campbell Barton
2011-03-22properties were being used with wrong type functions, this resulted in bad ↵Campbell Barton
memory access when getting int from an enum.
2011-03-21move script directories for internal blender scripts.Campbell Barton
ui/ --> startup/bl_ui op/ --> startup/bl_operators scripts/startup/ is now the only auto-loading script dir which gives some speedup for blender loading too. ~/.blender/2.56/scripts/startup works for auto-loading scripts too.