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-07-05style cleanupCampbell Barton
2011-01-26update to background_job template to use --factory-startup option.Campbell Barton
make all templates pep8 compliant.
2010-10-12update for gamelogic templatesCampbell Barton
2010-08-11mathutils module methods only contained matrix constructors, move these to ↵Campbell Barton
matrix class methods since this is acceptable in python. eg: dict.fromkeys() and groups them more logically. mathutils.RotationMatrix -> mathutils.Matrix.Rotation mathutils.ScaleMatrix -> mathutils.Matrix.Scale mathutils.ShearMatrix -> mathutils.Matrix.Shear mathutils.TranslationMatrix -> mathutils.Matrix.Translation mathutils.OrthoProjectionMatrix -> mathutils.Matrix.OrthoProjection
2010-04-11PyAPICampbell Barton
- added new mathutils.Color() type, use with rna so we can do for eg: material.diffuse_color.r = 1.0 # also has hsv access material.diffuse_color.s = 0.6 - made Mathutils and Geometry module names lowercase.
2010-01-25Mathutils refactor & include in sphinx generated docs, (TODO, include ↵Campbell Barton
getset'ers in docs) - Mathutils.MidpointVecs --> vector.lerp(other, fac) - Mathutils.AngleBetweenVecs --> vector.angle(other) - Mathutils.ProjectVecs --> vector.project(other) - Mathutils.DifferenceQuats --> quat.difference(other) - Mathutils.Slerp --> quat.slerp(other, fac) - Mathutils.Rand: removed, use pythons random module - Mathutils.RotationMatrix(angle, size, axis_flag, axis) --> Mathutils.RotationMatrix(angle, size, axis); merge axis & axis_flag args - Matrix.scalePart --> Matrix.scale_part - Matrix.translationPart --> Matrix.translation_part - Matrix.rotationPart --> Matrix.rotation_part - toMatrix --> to_matrix - toEuler --> to_euler - toQuat --> to_quat - Vector.toTrackQuat --> Vector.to_track_quat
2009-11-21patch from Ronan BignauxCampbell Barton
use python3 print()
2009-11-18remove GPL headers from templates, am happy for them to be public domainCampbell Barton
2009-11-08pep8 whitespace commitCampbell Barton
bpy/rna api (no functionality change, just move getting the srna py base into a function)
2009-11-01Correct GPL license header for all python scriptsMartin Poirier
2009-10-31tabs to spaces, remove trailing white space. (apart of pep8)Campbell Barton
didnt do "release/scripts/io" since some exporters cant be auto converted
2009-10-29Script templates, including game logic scripts from 2.4x and new operator ↵Campbell Barton
template. Files copied into scripts/templates will automatically appear in the menu. the operator template is a bit rough but a start.