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
2007-11-21wizard_curve2tree.py - always use active object (local view was messing up ↵Campbell Barton
the context) Mesh.c - mesh.faces.extend([..., smooth=True]) - smooth keyword argument, in a number of places was looping through all faces just to smooth them. mesh_skin.py - smooth by default
2007-04-19selecting all new faces broke this, fixed and optimized a bit.Campbell Barton
2007-04-18PyAPI.Campbell Barton
moved bpy into bpy.data and bpy will be eventually replace the root level 'Blender' module. currently we have bpy.library bpy.config and bpy.data
2007-03-26py apiCampbell Barton
* stopped bpy from importing automaticaly as decieded in the meeting. * removed Blender.Main, since we agree it will be called bpy, renamed files also. * updated epydocs from this and last commit. * updated scripts to use bpy.*, and bugfix's for widgetwizard
2007-03-19added mesh skin to the face key menu and added a python slot here.Campbell Barton
2007-03-05mesh_skin - syntax error stopped ths script from working.Campbell Barton
svg2obj.py update from JMS - Exec was removed from the collect_ATTRIBUTS function . - Other uses was evaluated.
2007-02-22Updating own scripts to use Blender.Main, remove Base files.Campbell Barton
2007-02-06added messages to scripts, stopping them from modifying multires meshes.Campbell Barton
object_cookie_cutter - can now also use curves to cut holes in a mesh.
2007-01-16wasnt working for mixed modesCampbell Barton
2007-01-16was missing a check for the end edge that made skinning it raise an error.Campbell Barton
2007-01-15when a vert is shared by more then 1 vertloop give a nice error and exitCampbell Barton
2007-01-09Made skinning between 2 open edge loops work betterCampbell Barton
2007-01-05bugfix, would make bow-tie faces when skinning more then 2 loops.Campbell Barton
big speedup to loop detection added support for skinning open loops (could be improved, dosnt work that well when open loops have different vert counts) speedup elsewhere with LC's
2006-12-28mesh skin was flipping the skin between 2 loops because of an error in ↵Campbell Barton
AngleBetweenVecs python function that always returned 180d
2006-12-26mesh_skin updated to use ed.key, other minor cleanups.Campbell Barton
updated the url in other scripts
2006-12-14faster sorting syntax in python, try/except for py 2.3 backwards compatCampbell Barton
ls.sort(key = lambda v: v.foo) rather then ls.sort(lambda a,b: cmp(a.foo, b.foo))
2006-11-16fixed error that was caused by 2 vertex loops center being 0.0 distance ↵Campbell Barton
apart, also made the python 2.3 syntax default.
2006-07-30Fixed some logical errors and improved skinning method some more.Campbell Barton
2006-07-29problem reported with making aeroplane wings,Campbell Barton
attempted to fix the filling logic, was 50% now is 80% - not quite up to snuff still.
2006-07-27updated py scripts for changes in mathutilsCampbell Barton
2006-07-18fixed error that mode this script not work in python 2.3Campbell Barton
2006-07-10removed a script I wrote and added it under a different name.Campbell Barton
Moved from NMesh to Mesh and optimized.