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
2018-06-26Cleanup: pep8 function indentationCampbell Barton
2017-10-19Docs: correct descriptionsCampbell Barton
2017-03-25Cleanup: imports, indentation, long linesCampbell Barton
2017-03-18PyAPI: remove bpy.utils.register_module()Campbell Barton
In preparation for it being removed, see: T47811
2016-11-03Add 'Set From Faces' tool to custom split normals.Bastien Montagne
Feature request during bconf, makes sense to have it even as an hack for now, since this is probably one of the most common use cases. This should be redone in bmesh once we have proper custom noramls handling in edit mode...
2016-01-07BMesh: add select next/prev operatorCampbell Barton
This uses selection history to select the next vert/edge/face based on surrounding topology. Select previous just removes the last selected element. Uses key-bindings: Ctrl-Shift +/-
2015-06-07Cleanup: pep8Campbell Barton
2014-04-24Code cleanup: unused python vars & importsCampbell Barton
Use frosted rather then pyflakes
2013-06-05fix [#35453] "copy mirrored uv coords" doesn't workCampbell Barton
- made precision configurable. - report a warning when doubles are found since they cause problems. added Polygon.center attribute to avoid calculating in python.
2012-10-08style cleanup: pep8Campbell Barton
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
Should also fix the broken py ops tips...
2012-06-29Fixing a bug found while checking "[#31937] UV/Image Editor: Copy Mirrored ↵Bastien Montagne
UV Coords" (which isn't a bug at all). The tool works OK, except it was messing vertices' order of polys, often giving ugly results! Now only using sorted list of vertices indices to find matching polys.
2012-04-23rename Mesh.uv_loop_layers --> uv_layersCampbell Barton
add filtering for document generator to support --partial bpy.types.SomeType
2012-04-20style cleanup: pep8, also quiet compiler warning.Campbell Barton
2012-04-03Fix [#30665] UV-Editor: UV -> Copy Mirrored UV coords: mesh.faces_mirror_uv ↵Bastien Montagne
op now uses poly/loops (bmesh todo).
2012-03-23last commit broke cycles, also add BMESH_TODO's for python scripts that need ↵Campbell Barton
upgrading.
2012-02-20moved select interior faces into a C function (was python)Campbell Barton
2012-01-09Typo fix - thanks "Olson" on IRC!Joshua Leung
2011-09-21check that descriptions dont end with a '.', for non release builds.Campbell Barton
this is annoying for translators so rather then correct along the way which gives merge conflicts for branches - print a complaint message.
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-07-25style changes for operator scripts & some pep8 edits.Campbell Barton
2011-07-10cleanup for python scripts - unused vars and importsCampbell Barton
2011-07-01uv mirror poll function wasnt checking UV's were available on the mesh. Campbell Barton
2011-06-21fix [#27707] Script error for UVs->Copy Mirrored UV coordsCampbell Barton
2011-05-26move less common mesh operations out of bpy_types into bpy_extras.mesh_utilsCampbell Barton
2011-04-29fix [#27199] Copy Mirrored UV Coords missing the reverse optionCampbell Barton
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.