Calculating coordinates in a spiral shape
Posted: Sat Apr 25, 2020 11:48 pm
I recently finished my first circuit contraption and it is a total mess. I'm glad it works the way it is intended to, but now I'm curios about your theoretical thoughts how to calculate coordinates in a spiral shape. So the desired output should be:
(TickA is the first tick that holds coordinates, x is the time you need to calculate the next coordinates)
TickA + 0x: ( 0/ 0)
TickA + 1x: ( 1/ 0)
TickA + 2x: ( 1/ 1)
TickA + 3x: ( 0/ 1)
TickA + 4x: (-1/ 1)
TickA + 5x: (-1/ 0)
TickA + 6x: (-1/-1)
TickA + 7x: ( 0/-1)
TickA + 8x: ( 1/-1)
TickA + 9x: ( 2/-1)
TickA + 10x: ( 2/ 0)
TickA + 11x: ( 2/ 1)
TickA + 12x: ( 2/ 2)
TickA + 13x: ( 1/ 2)
And so on...
(I'm so sad table layouts aren't supported)
This thread needn't to be one to show me perfect solutions, to offer blueprints or savegames, I'm just curios about your theorycrafted solutions, to compare how good my solution was, to get known to some tricks in circuit networks and so on...
(TickA is the first tick that holds coordinates, x is the time you need to calculate the next coordinates)
TickA + 0x: ( 0/ 0)
TickA + 1x: ( 1/ 0)
TickA + 2x: ( 1/ 1)
TickA + 3x: ( 0/ 1)
TickA + 4x: (-1/ 1)
TickA + 5x: (-1/ 0)
TickA + 6x: (-1/-1)
TickA + 7x: ( 0/-1)
TickA + 8x: ( 1/-1)
TickA + 9x: ( 2/-1)
TickA + 10x: ( 2/ 0)
TickA + 11x: ( 2/ 1)
TickA + 12x: ( 2/ 2)
TickA + 13x: ( 1/ 2)
And so on...
(I'm so sad table layouts aren't supported)
This thread needn't to be one to show me perfect solutions, to offer blueprints or savegames, I'm just curios about your theorycrafted solutions, to compare how good my solution was, to get known to some tricks in circuit networks and so on...