Upload
This commit is contained in:
commit
43352ff262
1291 changed files with 220976 additions and 0 deletions
18
GRID/MAIN.CUT
Normal file
18
GRID/MAIN.CUT
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
if(y==0)
|
||||
{
|
||||
if(x&1) c=63;
|
||||
else if(x&4) c=31;
|
||||
else if(x&2) c=15;
|
||||
}
|
||||
else if(y==1)
|
||||
{
|
||||
if(x&2) c=63;
|
||||
else if(x&1) c=31;
|
||||
else if(x&4) c=15;
|
||||
}
|
||||
else
|
||||
{
|
||||
if(x&4) c=63;
|
||||
else if(x&2) c=31;
|
||||
else if(x&1) c=15;
|
||||
}
|
||||
Loading…
Reference in a new issue