Removes the test alog, cleans up some renderer stuff, starts work on cellular automata, closes #14
This commit is contained in:
11
scripts/algorithms/cellular_auotmata.lua
Normal file
11
scripts/algorithms/cellular_auotmata.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
CellularAutomata = {}
|
||||
|
||||
function CellularAutomata:initialize(w, h)
|
||||
|
||||
end
|
||||
|
||||
function CellularAutomata:update()
|
||||
return true
|
||||
end
|
||||
|
||||
visualizer.algorithm_manager:register_algorithm("Cellular Automata", function (w, h) CellularAutomata:initialize() end, function () return CellularAutomata:update() end, 1)
|
||||
Reference in New Issue
Block a user