Another update from ingydotnet^djgoku
This commit is contained in:
parent
91df62d461
commit
948b86eafa
7604 changed files with 108452 additions and 22726 deletions
|
|
@ -1,4 +1,5 @@
|
|||
load'viewmat'
|
||||
size=.2{.".wd'qm' NB. J6
|
||||
size=. getscreenwh_jgtk_ '' NB. J7
|
||||
NB. size=. 2{.".wd'qm' NB. J6
|
||||
NB. size=. getscreenwh_jgtk_ '' NB. J7
|
||||
size=. 3{".wd'qscreen' NB. J8
|
||||
'rgb'viewmat- (4<.@%~{:size)# ({.size) $&> 1 2 3 4#&.> <0 1
|
||||
|
|
|
|||
18
Task/Pinstripe-Display/Lua/pinstripe-display.lua
Normal file
18
Task/Pinstripe-Display/Lua/pinstripe-display.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
function love.load()
|
||||
WIDTH = love.window.getWidth()
|
||||
ROW_HEIGHT = math.floor(love.window.getHeight()/4)
|
||||
love.graphics.setBackgroundColor({0,0,0})
|
||||
love.graphics.setLineWidth(1)
|
||||
love.graphics.setLineStyle("rough")
|
||||
end
|
||||
|
||||
function love.draw()
|
||||
for j = 0, 3 do
|
||||
for i = 0, WIDTH, (j+1)*2 do
|
||||
love.graphics.setColor({255,255,255})
|
||||
for h = 0, j do
|
||||
love.graphics.line(i+h, j*ROW_HEIGHT, i+h, (j+1)*ROW_HEIGHT)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
10
Task/Pinstripe-Display/Mathematica/pinstripe-display.math
Normal file
10
Task/Pinstripe-Display/Mathematica/pinstripe-display.math
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
color[y_] := {White, Black}[[Mod[y, 2] + 1]];
|
||||
Graphics[Join[{Thickness[1/408]},
|
||||
Flatten[{color[#], Line[{{# - 1/2, 408}, {# - 1/2, 307}}]} & /@
|
||||
Range[408]], {Thickness[1/204]},
|
||||
Flatten[{color[#], Line[{{2 # - 1, 306}, {2 # - 1, 205}}]} & /@
|
||||
Range[204]], {Thickness[1/136]},
|
||||
Flatten[{color[#], Line[{{3 # - 3/2, 204}, {3 # - 3/2, 103}}]} & /@
|
||||
Range[136]], {Thickness[1/102]},
|
||||
Flatten[{color[#], Line[{{4 # - 2, 102}, {4 # - 2, 1}}]} & /@
|
||||
Range[102]]], ImageSize -> {408, 408}]
|
||||
Loading…
Add table
Add a link
Reference in a new issue