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
2016-04-20Fix T48086: Smart UV Project fails w/ small facesCampbell Barton
Epsilon for small faces was too large. Also suppress exception when all faces area are below the epsilon.
2015-11-23UV Smart Project: restore 'Stretch to UV Bounds'Campbell Barton
This option wasn't exposed since 2.4x. D1622 by @candreacchio
2014-12-11Fix T42859 smart UV unwrap does not support aspect correction.Antony Riakiotakis
Can be considered TODO but it's not bad to support either. Also added RNA api to get aspect ratio of assigned UV image - returns aspect corrected image dimensions so needs adjustments for uv editing.
2014-10-28Cleanup: remove redundant 'object' parent classCampbell Barton
2014-08-06Correct Python exceptionsCampbell Barton
T35358 by Codemanx
2014-04-24Smart UV Project: don't rotate islands which are almost squareCampbell Barton
2014-04-03Fix T37509: regression in smart-uv island orientationCampbell Barton
2014-03-17Fix T31598: smart UV failed for small facesCampbell Barton
previous fixes only tweaked epsilon, but logic for skipping zero area boxes was still wrong.
2014-01-08UV Unwrap: smart uv unwrap would fail still on some very small facesCampbell Barton
2013-09-11fix [#36020] SmartUV Project is messy on a cubeCampbell Barton
was using very simple/stupid check to rotate us islands, replace with box_fit_2d() function. missed docstring last commit.
2013-04-07Fix for [#34898] Typo in error message of mathutils.VectorThomas Dinges
* Also fixed some more cases of "more then" -> "more than".
2012-11-28typo's and some style cleanup, also added asserts into BLI_vsnprintf and ↵Campbell Barton
BLI_sprintfN when invalid args are given.
2012-11-26fix [#31598] Messed up Smart UVsCampbell Barton
face areas were too close to zero. also copy the face normal to avoid recalculations on each use.
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-07-05style cleanupCampbell Barton
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
Should also fix the broken py ops tips...
2012-06-20style cleanupCampbell Barton
2012-04-23rename Mesh.uv_loop_layers --> uv_layersCampbell Barton
add filtering for document generator to support --partial bpy.types.SomeType
2012-04-13bmesh todo: vertex dirtmap now working again.Campbell Barton
also renamed Polygon helper property from 'loops' to loop_indices
2012-02-27Various fixes to UI messages (among other things, all messages needed it ↵Bastien Montagne
should now be capitalized).
2012-02-08svn merge ^/trunk/blender -r43934:43976Campbell Barton
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2011-12-23svn merge ^/trunk/blender -r42778:42839Campbell Barton
2011-12-22picky edits - use "" for non enum strings.Campbell Barton
2011-11-17Add access to UVs from python, patch python unwrap scripts to work wtih ngonsAndrew Wiggin
2011-11-08cmake & pep8 tidy up, also some style edits.Campbell Barton
remove unneeded collection length function.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-17correct spelling errors in commentsCampbell Barton
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-09-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-08-22pep8 edits and change '!= None' to 'is not None'Campbell Barton
2011-08-19py style change only - make property definitions consistentCampbell Barton
2011-08-15fix [#28227] join_uv and bake work wrongCampbell Barton
added back ability to unwrap all selected mesh objects.
2011-08-12import common classes from bpy.types, saves ~1000 python getattrs on startup.Campbell Barton
2011-07-25deprecate multiplication orders:Campbell Barton
vector * matrix vector *= matrix vector * quaternion vector *= quaternion Use the reverse order instead, enable WITH_ASSERT_ABORT in cmake to promote the warnings into errors.
2011-07-18fix [#27996] Smart UV Unwrap Still Results in OverlapsCampbell Barton
real fix this time :S, I thought using old code from 2.4x would fix but quaternion needed to be inverted.
2011-06-28fix [#27787] Smart UV Unwrap Results in OverlapsCampbell Barton
added optional face area weighting (from 2.4x) since this can result in overlapping faces.
2011-06-24fix [#27742] Smart UV project no longer works in 2.58Campbell Barton
failed with active, unselected objects.
2011-06-21pep8 complianceCampbell 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.