putting together a simple test case so that I can test my quad/cubic interpolator

This commit is contained in:
Stephen Mardson McQuay
2010-03-20 17:10:02 -06:00
parent 993c901cec
commit 1fc988428d
14 changed files with 616 additions and 538 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
from Blender import *
import bpy
from grid.test3d import simple_rect_grid
from grid.test3d import rect_grid
g = simple_rect_grid(10, 10, 20)
g = rect_grid(10, 10, 20)
me = bpy.data.meshes.new('points')
me.verts.extend(g.points)