Re: [Tutor] Best way to store and access a fixed coordinate list

2011-08-19 Thread David Crisp
Dont worry! I solved this. I had a brain fade earlier today when I was working on the problem and it wasnt untill this evening when I got home and relaxed that what I was after came to mind. The following code example does the basics of what I was trying to do. Its pretty damn simple. so i was

Re: [Tutor] Best way to store and access a fixed coordinate list

2011-08-18 Thread Steven D'Aprano
David Crisp wrote: Hello, I have a large grid of numbers 100 * 100 I then randomly select an X and Y to act as a "centre" point. I have a list of numbers which are coordinate offsets which are then applied to the centre point as per: X = (-2,2),(-4,2),(4,2),(2,2) (The list is about 200 coor

[Tutor] Best way to store and access a fixed coordinate list

2011-08-18 Thread David Crisp
Hello, I have a large grid of numbers 100 * 100 I then randomly select an X and Y to act as a "centre" point. I have a list of numbers which are coordinate offsets which are then applied to the centre point as per: X = (-2,2),(-4,2),(4,2),(2,2) (The list is about 200 coordinate pairs long) T