Skip to content

Instantly share code, notes, and snippets.

@fgaz
fgaz / LightInteraction.hs
Created December 22, 2015 22:04
Simple light/wave interaction generator in Haskell.
-- simple light/wave interaction generator
module Main where
-- depends on split and matrix packages
import Data.List.Split (chunksOf)
import Data.Matrix (Matrix, matrix, transpose, toList)
type P2 = (Int, Int)
type P3f = (Float, Float, Float)
type Light = Float
@fgaz
fgaz / test
Created July 28, 2014 16:17
test
test