-- adding help_browser.py to show help for installed scripts;
-- updated scripts to include basic doc info to be shown with above script:
    script authors can / will / should update with more info, of course;
-- updated some scripts to newer versions: disp_paint, fixfromarmature, hotkeys, etc.
This commit is contained in:
2004-11-07 16:31:13 +00:00
parent 23e8b98228
commit c702b237d5
59 changed files with 2475 additions and 368 deletions

View File

@@ -7,6 +7,30 @@ Group: 'Mesh'
Tip: 'Bevel selected vertices'
"""
__author__ = "Loic Berthe"
__url__ = ("blender", "elysiun")
__version__ = "1.0"
__bpydoc__ = """\
This script implements vertex bevelling in Blender.
Usage:
Select the mesh you want to work on, enter Edit Mode and select the vertices
to bevel. Then run this script from the 3d View's Mesh->Scripts menu.
You can control the thickness of the bevel with the slider -- redefine the
end points for bigger or smaller ranges. The thickness can be changed even
after applying the bevel, as many times as needed.
For an extra smoothing after or instead of direct bevel, set the level of
recursiveness and use the "Recursive" button.
Notes:<br>
You can undo and redo your steps just like with normal mesh operations in
Blender.
"""
# $Id$
#
######################################################################