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/intern
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-09 00:41:09 +00:00
2012-03-09 00:41:09 +00:00
2012-03-16 05:03:13 +00:00
2012-03-08 10:52:30 +00:00
2012-03-03 20:36:09 +00:00
2012-03-09 18:28:30 +00:00
2011-11-29 10:54:47 +00:00