View Single Post
  #8  
Old 02-03-2005, 10:19 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
The older version of vizinfo didn't support passing lists to the scale function. You will have to pass each value individually:
Code:
info.scale(INFO_SIZE[0],INFO_SIZE[1])
or you could also do the following:
Code:
info.scale(*INFO_SIZE)
Reply With Quote