Hi guys/Gals.
I want to rotate an 8 byte array, to create a spinning effect, i.e.
char_buff[0] = 0x81;
char_buff[1] = 0x42;
char_buff[2] = 0x24;
char_buff[3] = 0x18;
char_buff[4] = 0x18;
char_buff[5] = 0x24;
char_buff[6] = 0x42;
char_buff[7] = 0x81;
this makes up a "character" , any ideas as how I can rotate it. not just 90 degrees, 180, 270. that bits easy. but a full 'spin'?
Thanks guys.
I want to rotate an 8 byte array, to create a spinning effect, i.e.
char_buff[0] = 0x81;
char_buff[1] = 0x42;
char_buff[2] = 0x24;
char_buff[3] = 0x18;
char_buff[4] = 0x18;
char_buff[5] = 0x24;
char_buff[6] = 0x42;
char_buff[7] = 0x81;
this makes up a "character" , any ideas as how I can rotate it. not just 90 degrees, 180, 270. that bits easy. but a full 'spin'?
Thanks guys.
Comment