ok...
so I've decided to start work on a model converter...
I'm a lousy Py programmeer and I'm trying to understand a few things...
but first off:
I want to store vert XYZ data in 'verts' as a list...
say we have 3 verts, the var would look like this:
verts = [X,Y,Z , X,Y,Z , X,Y,Z]
#done with this:
while (count > 0):
verts.append(vec(),vec(),vec())
count -= 1
now how would I read from the 'verts' as 1 vert at a time??
I'm thinking something like:
verts[0], verts[1], verts[2]
but that would just return the first offset...
can someone help :/