wallpaper-0.1.0.0: src/Recipes/Functions.hs
---------------------------------------------------------------------------------
-- |
-- Module : Recipes.Functions
-- Copyright : (c) 2017 Jeffrey Rosenbluth
-- License : BSD-style (see LICENSE)
-- Maintainer : jeffrey.rosenbluth@gmail.com
--
-- Recipes for functions of a complex variable.
--
-- The color wheel used for all of the images:
--
-- <<examples/rose_small.png>>
---------------------------------------------------------------------------------
module Recipes.Functions
(
-- * Functions
identity
, standard
) where
import Types
identity :: RealFloat a => Recipe a
identity = id
standard :: RealFloat a => Recipe a
standard z = (z - 1) / (z**2 + z + 1)