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
2005-11-20-- added an optional "cage" parameter to mesh.getFromObject() to allowKen Hughes
getting cage vertices from geometry objects
2005-11-16* update to python docsJoseph Gilbert
- update for the old mathutils rewrite - update for some other methods ive added - added explaination of wrapped data - added a .css file for epydoc gives nice blender/python colors :?
2005-11-09-- changes and bugfixes from Cam:Ken Hughes
-- calling mesh.getFromObject(obj) with mesh object now also copies material properties -- mesh.quadToTriangle() takes a parameter to duplicate both Ctrl-TKEY and Shift-Ctrl-TKEY actions -- assigning None to mesh.verts "clears" the memory allocated to the mesh (equivalent of Mesh.New(), but on an existing mesh) -- exception handler message for mesh.faces[i].uv = [..] more clear (uv attribute only accepts tuple, not list) -- fixed bug for meshs with deformed verts when deleting verts (deformed verts deleted and repacked correctly now, I think)
2005-10-28- change description of AssignModes from "blah blah" to something meaningful.Ken Hughes
2005-10-27Lots of BPy Mesh additions:Ken Hughes
- added faces.uvSel attribute: can get/set selection status of UV vertices in UV Editor window - make mesh.faceUV, mesh.vertexUV and mesh.vertexColor writable: users can now enable/disable UV faces, vertex colors, "sticky" vertices - fixed bug with mesh tool methods: before it would only work if an object linked to the mesh was selected - added mesh.quadToTriangle() and mesh.triangleToQuad() methods - added selected() method to verts, edges, faces; returns list of indices of selected items - mesh.getFromObject() now gets derived mesh data - ported vertex group methods from NMesh (required change to Object.c) - ported module dictionaries from NMesh
2005-10-21- documentation updates:Ken Hughes
-- add Key module to index page -- include cross references for Object.colbits in material descriptions within Object, NMesh and Mesh modules
2005-10-20- New additions to Mesh moduleKen Hughes
- new methods from NMesh (transform, getFromObject, findEdges) - new methods for deleting groups of verts, edges and faces - new methods for accessing mesh editing tools: fill, flipNormals, recalcNormals, remDoubles, smooth, subdivide, toSphere - Added PVertType to Types module (not my favorite name; any suggestions?)
2005-10-11- added Mesh.MVert(); can now create 'thick' vertices which don't wrap meshKen Hughes
- implemented slice operations (get/set) for vertex list; allows script writers to manipulate lists of vertices (using 'thick' vertices) - fixed problem in mesh.faces.extend() which allowed the creation of "Eeekadoodle" faces - added mesh.update() method; (possibly) temporary fix to allow updating DAG
2005-10-04Added Mesh.New() method; can now create new meshes within the moduleKen Hughes
Changed Object.link() to allow link objects with both BPython-type meshes Changed Object.getData() to allow retrieving both types of BPython-type meshes Added new mesh types to Types module
2005-10-03Documentation for new Python thinmesh moduleKen Hughes