Thanks for pointing out the distinction in use of table and object. That helps. 
In python I would probably do: 
    
    
    spline = {
      't': [],
      'xy': [],
      'v': [],
      'a': [],
      'length': []
    }
    
    
    Run

and then instead of seqfd1.add(fd1) in the final loop I'd directly use the 
dict: 
    
    
    spline['v'].append(fd1)
    
    
    Run

Reply via email to