Thread: vertex list
View Single Post
  #2  
Old 06-30-2009, 09:27 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
It looks like you are using the numpy.zeroes function incorrectly. I believe it should be:
Code:
roadarray = 0.0*np.zeros((201,3)) #Need the inner parentheses
Reply With Quote