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-12-18Fix mathutils docstring typos.Tamito Kajiyama
2014-12-13Fix T42885: We still had a few wrong doc in mathutils about methods returningBastien Montagne
instance of self while actually returning None...
2014-09-24Cleanup: use float versions of functions when in/output are floatsCampbell Barton
2014-01-30Fix T38402: invalid message for bad type assignments (Quat, Vector)Campbell Barton
2013-10-12code cleanup: use const's for vector args.Campbell Barton
2013-07-21code cleanup: add break statements in switch ()'s, (even at the last case).Campbell Barton
2013-07-02remove nan copyrights from code added since blender become opensource (copy ↵Campbell Barton
paste errors), also remove BKE_script.h
2013-04-07Fix for [#34898] Typo in error message of mathutils.VectorThomas Dinges
* Also fixed some more cases of "more then" -> "more than".
2012-12-08ifdef out dynstr so mathutils can be compiled as an external module again.Campbell Barton
2012-11-05default to Python3.3 on Linux for SCons and CMake, warn when building with ↵Campbell Barton
python 3.2x or older. also remove casts to keep Python3.2 warning quiet.
2012-10-21style cleanup: commentsCampbell Barton
2012-09-27incorrect spelling in commentsCampbell Barton
2012-08-27support unary positive operators for vectors (same as numpy), so you can do ↵Campbell Barton
'vector_a = +vector_b', this makes a copy.
2012-07-25don't pass the same value to axis_angle_to_quat() for axis & quat.Campbell Barton
-/-This line, and those below, will be ignored-- M mathutils_Quaternion.c
2012-05-20code cleanup:Campbell Barton
- style - multi-line ifs move braces onto new lines. - iterators - convert some to macros, other split up and move brace.
2012-04-15add 'idprop' module so we can document idprop.types.*, currently doc ↵Campbell Barton
generator has no access to ID Property types.
2012-03-30patch to add __deepcopy__ to mathutils types, this is no different to ↵Campbell Barton
__copy__, except some py utilities expect __deepcopy__ to exist, so better have them.
2012-03-26style cleanup: python apiCampbell Barton
2012-03-21fix for Quaternion.to_axis_angle() returning a zero axis vector.Campbell Barton
2012-03-18code cleanup: not all mathutils callback creation functions tool unsigned ↵Campbell Barton
char for type & subtype args.
2012-03-17style cleanup: py/capiCampbell Barton
2012-03-13workaround [#30480] Knife tool flickerCampbell Barton
the problem was numeric precision when in ortho mode the start/end points for the view vector would be 2000 apart which caused trouble for the intersection test.
2012-03-04style cleanup - comment formattingCampbell Barton
2012-02-24typo cleanup, no functional changes.Campbell Barton
2011-12-26formatting edits & minor correctionsCampbell Barton
2011-12-25use docstrings for mathutils getset's, also some formatting edits, no ↵Campbell Barton
functional changes.
2011-12-24picky formatting of mathutilsCampbell Barton
2011-12-24mathutils get/set function rename + minor changes to matrix functions (no ↵Campbell Barton
functional changes)
2011-12-20rename internal matrix struct member vars to avoid confusionCampbell Barton
Matrix.contigPtr --> matrix Matrix.row_size --> num_col Matrix.col_size --> num_row
2011-12-20__str__ functions for other mathutils typesCampbell Barton
2011-12-18formatting edits in py api, no functional changesCampbell Barton
2011-11-30formatting edits (120 width max) and remove some redundant castsCampbell Barton
2011-11-24pep8 edits and avoid naming conflicts with python builtinsCampbell Barton
2011-11-24rename mathutils constructors to match other parts of the bpy/api (no ↵Campbell Barton
functional changes)
2011-11-16formatting edits & doc correction, no functional changes.Campbell Barton
2011-11-13include invalid type name in mathutils error messages.Campbell Barton
2011-11-11quiet -Wdouble-promotion warningsCampbell Barton
2011-11-05misc doc editsCampbell Barton
- remove recently added sphinx reference workaround. - tested doxygen, correct some warnings, set tab width and added pymathutils group. - added convenience target 'make doc_doxy'
2011-11-02new math function: Quaternion.to_axis_angle().Campbell Barton
add in safety checks for inf/nan values which could happen in some cases.
2011-10-28replace VECCOPY and QUATCOPY with inline funcs.Campbell Barton
2011-10-23Remove some more $Id$ that still were left after r41227 and r41228.Guillermo S. Romero
2011-10-23Remove the svn:keywords property.Guillermo S. Romero
2011-10-13formatting edits & remove debug print.Campbell Barton
2011-10-10fix documentation error - [#28862] Method 'difference' doesn't exist in ↵Campbell Barton
Quaternion object.
2011-09-19edits to argument parsing for Euler.rotate_axis, also corrected some ↵Campbell Barton
exception messages and minor style edits.
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-15move mathutils into its own lib.Campbell Barton