June 22, 2013

adding custom modules to blender python directory for easy import

example, local absolute position of 1 selected vertex
"""
in 2.6x/scripts/ i added ztools and a script inside that folder so I now have
2.6x/scripts/ztools/reposition.py

In blender console I can now import the functions from reposition.py and use them conveniently with autocomplete

>>> from ztools.reposition import move
>>> move(1,0,0)
"""