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
2009-09-28- removed 2.4x release/scriptsCampbell Barton
- moved release/io and release/ui into release/scripts/io, ui - updated scons, cmake, make When porting 2.4x scripts back, use a command like this so as not to loose the commit history... svn cp https://svn.blender.org/svnroot/bf-blender/branches/blender2.4/release/scripts/raw_import.py release/scripts/io/import_raw.py
2009-05-22Removed use of CrossVecs, DotVecs, CrossQuats and DotQuatsCampbell Barton
for all scripts except import_dxf and colladaImEx/translator.py
2009-04-01[#18478] Unwrap (smart projections) should accept values grater than 0.25 ↵Campbell Barton
for island margin (it works just fine when changed in original script) increased value as suggested.
2008-04-23added ipo script template from blenderartists forTe, made scripts refresh on ↵Campbell Barton
load factory settings and replaced elysiun with blenderartist.org in headers
2007-09-22added an active face for the mesh editmode and normal mesh - this is needed ↵Campbell Barton
because the TFace flag was not always easy to access from editmode. using the last selected face was almost good enough however when selecting verts and edges the last selected face would become inactive and the space image would flicker about too much. The active face is used for getting the space image at the moment and keeps scripts that use this flag working also. This has 2 commands to get and set, so the variable is not accessed directly. all "UV Calculate" scripts work now last commit crashed when in solid draw mode, it seems subsurf modifier is ignoring the displayMask since MTFACE is available. just made it do a null check for now. uvcalc_follow_active_coords.py - should be done inC and put in the snap menu.
2007-05-01uvcalc_smart_project.py - fixed error in rare cases.Campbell Barton
xfig_export.py - NMesh to Mesh, minor improvements/cleanup. unweld.py - fixed error when a vert had no faces, also some small speedups and changes.
2007-04-29dont use tface hide or select anymore, since maintaining 2 sets of ↵Campbell Barton
hide/select data for each face is annoying. using mface->flag for both. Also found that the cdDM_drawMappedFaces and cdDM_drawFacesTex_common could get normals mixed up when rendering hidden faces. because hidden/invisible faces used continue without advancing to the next normal.
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-04-14added missing 'import bpy' from uvcalc_smart_projectCampbell Barton
removed 2 unused vars from DNA_object_types.h
2007-04-09mesh_solidify - added a different wire type, can make 4 and 6 sided wire ↵Campbell Barton
segments. also made solid wire an option. uvcalc_smart_project - removed import of Main, was causing error
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-20BoxPack2D example in epydocs, small cleanup on Geometry.cCampbell Barton
2007-03-20Geometry.c - rewrote my python box-packer algo in C,Campbell Barton
packing 2400 rectanges is about 38x faster. Use the C implimentation in uvcalc_lightmap and uvcalc_smart_project Blender.c - filename returning None raises errors with existing scripts, just return "" so string functions on the filename dont raise an error.
2007-03-01new script seams from islands, adds seams at the boundries of existing UV ↵Campbell Barton
islands. uvcalc_smart_project - needed to import Main
2007-02-22Updating own scripts to use Blender.Main, remove Base files.Campbell Barton
2007-02-01faces in face select mode can be selected and hidden, check that faces are ↵Campbell Barton
not hidden as well as being selected.
2007-01-22fixed error on hole filling ↵Campbell Barton
(http://blender.org/forum/viewtopic.php?p=59062#59062)
2007-01-18error in generating projections fixed.Campbell Barton
also modified the margin value so you dont need to have values like 0.001 and added an option not to use face areas to weight projections.
2007-01-16cleaned up uv island projection generation and added an option 'Init from ↵Campbell Barton
view' - to use the view vector as one of the first projections
2006-12-21Updated to use face.edge_keys,Campbell Barton
fixed problem with merging islands not detecting an island in an island (wrong offset) better island merging from user input
2006-12-17Use ed.key and face.edge_keys to build connectivity data faster.Campbell Barton
2006-12-15removing uvcalc_from_adjacent for review on Sunday's meeting.Campbell Barton
image_dump2path is a stopgap util. We need to look into making Pack/Unpack use filenames, not IDnames. or have some other datamanagement utility.