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-08-25minor code cleanupCampbell Barton
2012-08-25baking actions with euler rotations now uses compatible eulers for pose and ↵Campbell Barton
object bakes.
2012-07-04More spell checking.Bastien Montagne
2012-07-03First load of spell and typo fixes (mostly UI messages, but also one or two ↵Bastien Montagne
pieces of code using mis-spelled names).
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
Should also fix the broken py ops tips...
2012-07-01new function: bpy.extras.view3d_utils.region_2d_to_origin_3d()Campbell Barton
useful for doing ray casts from the view.
2012-06-30code cleanup: some vars were assigned when not neededCampbell Barton
2012-06-25utility mesh function to return UV islandsCampbell Barton
2012-06-20style cleanupCampbell Barton
2012-06-04picky change - rename keymap since there is no 'mask editor'Campbell Barton
2012-06-04mask mode for clip editor developed by Sergey Sharybin, Pete Larabell and ↵Campbell Barton
myself. see: http://wiki.blender.org/index.php/User:Nazg-gul/MaskEditor note - mask editing tools need continued development, feather option is not working 100%
2012-05-31Fix #31658: missing properties in key configuration export, hidden propertiesBrecht Van Lommel
should be exported as well, not sure why this was disabled, it's supposed to only affect UI hiding.
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-03-15revert r44887, changes were OK but caused too many problems, better do this ↵Campbell Barton
as a smaller patch. sphinx_doc_gen.sh broke building docs - - examples/ svn directory was being removed since it assumed an out-of-source build. - include references somehow stopped working (didnt find why). also fixed an unrelated error with building docs in object_utils.py
2012-03-15Fix #30549: Error adding mesh object to sceneSergey Sharybin
2012-03-14Changes to python-defined add object operators:Sergey Sharybin
- Reset rotation value when toggling Align to View property which correctly re-alignes object on continuous property toggling and fixes issue #30510: [2.62] Add Mesh - Torus - "Align to View" cannot be switched back when toggling off - Moves all generic object-add properties into a helper function which might be easily re-used.
2012-03-08Fix #30435: 2.62 Torus Batch building "Bug" or A Experimental Feature?Sergey Sharybin
Python-defined primitives used to be added to all visible layers instead of adding to active scene layer as it happens with C-defined primitives.
2012-02-27Various fixes to UI messages (among other things, all messages needed it ↵Bastien Montagne
should now be capitalized).
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-16fix [#30201] bpy_extras.image_utils.load_image always returns placeholderCampbell Barton
in existing addons this only effects OBJ import. interestingly even though this is a bug (in that its returning a placeholder when it should load the image), since the placeholder points to the correct path, the image will load correctly when refreshed, so the bug's not too bad.
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2012-02-02* fix for error in shape transfer (wrong var name).Campbell Barton
* fix for error alligning object to the view when no space was set. also added blenderplayer start to CTest operator blacklist.
2012-01-17Uv Tools branch GSOC 2011Antony Riakiotakis
========================= Documentation: http://wiki.blender.org/index.php/User:Psy-Fi/UV_Tools Major features include: *16 bit image support in viewport *Subsurf aware unwrapping *Smart Stitch(snap/rotate islands, preview, middlepoint/endpoint stitching) *Seams from islands tool (marks seams and sharp, depending on settings) *Uv Sculpting(Grab/Pinch/Rotate) All tools are complete apart from stitching that is considered stable but with an extra edge mode under development(will be in soc-2011-onion-uv-tools).
2011-12-24update bpy_extras.view3d_utils for matrix changesCampbell Barton
AFAIK all trunk scripts are now updated for changes to matrix row/col.
2011-12-23Fix test key conflict operator error, due to missing scripts window.Brecht Van Lommel
2011-12-22update axis conversion for recent matrix changesCampbell Barton
2011-12-10fix for error in bpy_extras.image_utils.load_image() when the image file ↵Campbell Barton
exists but cant be read (wrong permissions for eg).
2011-12-10fix for bpy_extras.image_utils.load_image() making a placeholder image when ↵Campbell Barton
passed a path in bytes. made OBJ import fail when the image was missing.
2011-12-06attempt to fix defione for qtcreator project file and cycles define.Campbell Barton
2011-11-07Camera tracking integrationSergey Sharybin
=========================== Commiting camera tracking integration gsoc project into trunk. This commit includes: - Bundled version of libmv library (with some changes against official repo, re-sync with libmv repo a bit later) - New datatype ID called MovieClip which is optimized to work with movie clips (both of movie files and image sequences) and doing camera/motion tracking operations. - New editor called Clip Editor which is currently used for motion/tracking stuff only, but which can be easily extended to work with masks too. This editor supports: * Loading movie files/image sequences * Build proxies with different size for loaded movie clip, also supports building undistorted proxies to increase speed of playback in undistorted mode. * Manual lens distortion mode calibration using grid and grease pencil * Supervised 2D tracking using two different algorithms KLT and SAD. * Basic algorithm for feature detection * Camera motion solving. scene orientation - New constraints to "link" scene objects with solved motions from clip: * Follow Track (make object follow 2D motion of track with given name or parent object to reconstructed 3D position of track) * Camera Solver to make camera moving in the same way as reconstructed camera This commit NOT includes changes from tomato branch: - New nodes (they'll be commited as separated patch) - Automatic image offset guessing for image input node and image editor (need to do more tests and gather more feedback) - Code cleanup in libmv-capi. It's not so critical cleanup, just increasing readability and understanadability of code. Better to make this chaneg when Keir will finish his current patch. More details about this project can be found on this page: http://wiki.blender.org/index.php/User:Nazg-gul/GSoC-2011 Further development of small features would be done in trunk, bigger/experimental features would first be implemented in tomato branch.
2011-10-17correct spelling errors in commentsCampbell Barton
2011-10-11py api: bpy_extras.io_utils.path_reference() - added library argument so ↵Campbell Barton
exporters get the paths of linked images right.
2011-10-02- fix for keymap test operatorCampbell Barton
- cleanup pep8 warnings and unused py imports py pep8 cleanup
2011-09-26pep8 cleanup and fix for keymap test operator from my own recent fix.Campbell Barton
2011-09-26fix for keymap export, move functions common for the UI and operators into ↵Campbell Barton
bpy_extras.keymap_utils
2011-09-23remove bl_operators/nla.py, move bake_action function into ↵Campbell Barton
bpy_extras.anim_utils and bake operator into bl_operators/anim.py
2011-09-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-08-26correct missing bpy doc references.Campbell Barton
2011-08-22pep8 edits and change '!= None' to 'is not None'Campbell Barton
2011-08-15py api - optional sep argument for bpy_extra.io_utils.unique_name() since ↵Campbell Barton
for some formats '.' is an invalid char.
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-08-03fix [#28151] export OBJ don't save the extensionCampbell Barton
also correct some typos
2011-07-31fix for error in recent commit.Campbell Barton
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-28fix error in writing dupligroups for X3D export, may have effected other ↵Campbell Barton
exporters too.
2011-07-25reverse vector multiplication order for some internal functions.Campbell Barton