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
2014-01-13Code Cleanup: spellingCampbell Barton
2013-09-18fixes for python api docs.Campbell Barton
also move foreach_get/set examples into their own py example files (prefer not to have example code built into blenders binary).
2013-04-07freestyle lineset `tag` attribute was defined but not used, also some code ↵Campbell Barton
cleanup.
2013-02-18checking for V3D_LOCAL was duplicated in transform.c, and both checks not ↵Campbell Barton
quite correct. - When checking edimode, make sure its mesh editmode. - Graph editor supports this option but wasn't being checked.
2013-02-18fix bpy_extras.mesh_utils.edge_face_count_dict() helper api function.Campbell Barton
it was using tessfaces when theres no need to.
2013-01-16style cleanupCampbell Barton
2012-11-28bmesh operator api reference - add in 'bmesh' arg at the start of each ↵Campbell Barton
operator, also use :class: references.
2012-11-14remove ifdef'd bevel code, current bevel works better then the previous code.Campbell Barton
reduce strlen check in texttool_suggest_add() use 'del list[:]' rather then 'list[:] = []' in python scripts which clear lists.
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-25utility mesh function to return UV islandsCampbell Barton
2012-06-20style cleanupCampbell Barton
2012-04-08style cleanup: pep8 some C/styleCampbell Barton
2012-03-23more face -> tessface editsCampbell Barton
2012-03-23rna/python api change: rename Mesh.faces --> tessfaces, since existing ↵Campbell Barton
scripts are using this to modify the mesh and its confusing that the edits are not kept. This also makes it clearer that the faces are for tessellated results only. Added a section on the Gotcha's about upgrading scripts, the pros and cons of MeshTessFace/MeshPoly/BMFace. and spesifically how to upgrade importers and exporters for 2.63+.
2012-03-21rename ngon tessellate function.Campbell Barton
2012-02-21copy over a change from bmesh branch that was needed for lightmap unpack to ↵Campbell Barton
work, also tag some rna vars as unused.
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2011-10-17correct spelling errors in commentsCampbell Barton
2011-08-26correct missing bpy doc references.Campbell Barton
2011-08-22pep8 edits and change '!= None' to 'is not None'Campbell Barton
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-13patch [#27950] Patch to add the ability to generate random points on mesh facesCampbell Barton
from Andrew Hale (trumanblending)
2011-07-10fix for various python bugs and remove unused var.Campbell Barton
2011-07-03fix for error when moving module, broke fracture tools and select internal ↵Campbell Barton
face operator.
2011-06-30fix for own error in script edits, broke bpy_extras.mesh_utils.ngon_tesselateCampbell Barton
2011-06-21pep8 complianceCampbell Barton
2011-06-18fix for error caused with module relocation - broke loading ngons in OBJ filesCampbell Barton
2011-05-28move load_image into image_utils and add some docstrings to bpy_extras module.Campbell Barton
2011-05-28- generate sphinx docs for bpy_extras moduleCampbell Barton
- add in support to doc generator for automatically generating docs for submodules.
2011-05-26correct spelling error and some pep8 changes.Campbell Barton
2011-05-26move less common mesh operations out of bpy_types into bpy_extras.mesh_utilsCampbell Barton
2011-05-16move generic bpy helper modules into bpy_extras.Campbell Barton