elm-canvas icon indicating copy to clipboard operation
elm-canvas copied to clipboard

New Function : Scale

Open Chadtech opened this issue 8 years ago • 1 comments

Take the existing pixel data, and scale it

scaleX : Float -> Canvas -> Canvas

scaleY : Float -> Canvas -> Canvas

scale : Float -> Canvas -> Canvas
scale f = scaleX f >> scaleY f

Chadtech avatar Feb 02 '17 20:02 Chadtech

Put a lot of work into this, but I couldnt get it more performant than my native javascript implementation, so I am putting it off for a bit.

Chadtech avatar Mar 19 '17 03:03 Chadtech