Exppython docs:

- Added a very brief intro to the api doc and updated the command to generate
  the documentation (it's in a comment in Blender.py). Improved the NMesh ex.
This commit is contained in:
2003-07-16 01:44:51 +00:00
parent aec17932a0
commit d6c7427053
2 changed files with 33 additions and 23 deletions

View File

@@ -11,13 +11,17 @@ This module provides access to B{Mesh Data} objects in Blender.
Example::
import Blender
from Blender import NMesh, Object, Scene
from Blender import NMesh, Material
#
me = NMesh.GetRaw("Plane") # get the mesh data called "Plane"
if me.materials:
print me.materials # print the list of materials
mat = me.materials[0] # grab the first material in the list
mat.R = 1.0 # redefine its red component
if not me.materials: # if there are no materials ...
newmat = Material.New() # create one ...
me.materials.append(newmat) # and append it to the mesh's list of mats
print me.materials # print the list of materials
mat = me.materials[0] # grab the first material in the list
mat.R = 1.0 # redefine its red component
for v in me.verts: # loop the list of vertices
v.co[0] *= 2.5 # multiply the coordinates
v.co[1] *= 5.0