These graphics are based on a 5x7 grid, and the pairs of numbers used are the x/y co-ordinates on this grid.
The convention is to start in the top-right corner and go round clockwise, so for a simple rectangle, you would use:-
Code: Select all
{
"EQ_YOUR_RECTANGULAR_DEVICE" =
(
2, 3,
2, -3,
-2, -3,
-2, 3,
2, 3
);
}
The 'G' used for my GalDrivePod looks like this:-
Code: Select all
{
"EQ_GAL_DRIVE_MINE" =
(
0, 1,
0, 0,
1, 0,
1, -1,
-1, -1,
-1, 2,
2, 2,
2, 3,
-2, 3,
-2, -2,
2, -2,
2, 1
);
}