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-09-18Cleanup: use static sets where possibleCampbell Barton
2014-09-17Cleanup: pep8Campbell Barton
2014-09-10Text3d: assert for <0 len textCampbell Barton
also add operator to test blacklist
2014-09-06Py Mathutils: add `invert_safe()` and `inverted_safe()` to `Matrix`.Bastien Montagne
Those two mimic our BLI invert_m4_m4_safe - they add a small offset to diagonal values, in case org matrix is degenerated, and if still non-invertible, return identity matrix. Org patch by me, final enhanced version by ideasman42, many thanks!
2014-08-21Tests: remove support.run_unittestCampbell Barton
2014-08-20Fix T38722: Adding units in Imperial setting results in inconsistent valuesBastien Montagne
Now always check for a default unit, and evaluate the whole expression in this "unit space". Not an ideal solution, but should handle most cases nicely (we can't address all possible corner cases anyway). Note default unit is searched in current string first (bigger unit of current system wins), then in previous string. Note this also replaces ',' by '+' in default separation between units, helps solving issues with parenthesis (e.g. (1'1")*2.5 would fail in existing code)! This would break if someone uses py ops with lower precedence than '+' (like bitwise operations, and comparison), but these are not expected usecase here anyway. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D340
2014-08-11Run unittest.main() directlyCampbell Barton
2014-07-22Cleanup: pep8 & redundant varsCampbell Barton
2014-06-19Add brief license headers to testsCampbell Barton
These are effectively public-domain, but use apache2.0 to avoid adding new licenses
2014-06-18Move tests into tests/ top-level dirCampbell Barton