This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/python
Campbell Barton ebec111618 bmesh py api:
Wrap customdata, so far you can access the data layers in a pythonic way but not manipulate the customdata yet.

provides dictionary like access to customdata layers, eg:
  texpoly = bm.faces.tex["UVMap"]
  print(bm.verts.shape.keys())  # un-intended pun, keys() works on all layers.
  print("MyInt" in bm.edges.int)  # __contains__
  layer = bm.faces.get("CheckForLayer")
2012-03-16 05:03:13 +00:00
..
2012-03-16 05:03:13 +00:00
2012-03-09 18:28:30 +00:00
2012-03-16 05:03:13 +00:00
2012-03-14 22:39:56 +00:00
2012-02-22 09:19:53 +00:00
2012-02-22 09:19:53 +00:00
2011-11-01 20:14:58 +00:00