19 lines
495 B
Lua
19 lines
495 B
Lua
-- Draw isometric grid
|
|
|
|
-- Copyright 2010 Paulo Silva
|
|
--
|
|
-- This program is free software; you can redistribute it and/or
|
|
-- modify it under the terms of the GNU General Public License
|
|
-- as published by the Free Software Foundation; version 2
|
|
-- of the License. See <http://www.gnu.org/licenses/>
|
|
|
|
w,h=getpicturesize();
|
|
for y=0,h-1,8 do
|
|
for x=0,w-1,1 do
|
|
putpicturepixel(x,y+(x/2)%8,1);
|
|
end;end
|
|
for y=0,h-1,8 do
|
|
for x=0,w-1,1 do
|
|
putpicturepixel(x+3,y+7-((x/2)%8),1);
|
|
end;end
|