reanimate-1.1.1.0: Animation library based on SVGs.

Safe HaskellNone
LanguageHaskell2010

Reanimate.Povray

Description

Povray is a scriptable raytracer. All povray functions are cached and will reuse images when scripts stay the same.

Synopsis

Documentation

povray :: [String] -> Text -> Tree Source #

Run the povray raytracer with a default resolution of 320x180 and antialiasing enabled. The resulting image is scaled to fit the screen exactly.

povrayQuick :: [String] -> Text -> Tree Source #

Run the povray raytracer with a default resolution of 320x180 but without antialiasing. The resulting image is scaled to fit the screen exactly.

povraySlow :: [String] -> Text -> Tree Source #

Run the povray raytracer with a default resolution of 1440x2560 and antialiasing enabled. The FilePath points to a PNG file containing the resulting image.

povrayExtreme :: [String] -> Text -> Tree Source #

Run the povray raytracer with a default resolution of 2160x3840 and antialiasing enabled. The FilePath points to a PNG file containing the resulting image.

povray' :: [String] -> Text -> FilePath Source #

Run the povray raytracer with a default resolution of 320x180 and antialiasing enabled. The FilePath points to a PNG file containing the resulting image.

povrayQuick' :: [String] -> Text -> FilePath Source #

Run the povray raytracer with a default resolution of 320x180 but without antialiasing. The FilePath points to a PNG file containing the resulting image.

povraySlow' :: [String] -> Text -> FilePath Source #

Run the povray raytracer with a default resolution of 1440x2560 and antialiasing enabled. The FilePath points to a PNG file containing the resulting image.

povrayExtreme' :: [String] -> Text -> FilePath Source #

Run the povray raytracer with a default resolution of 2160x3840 and antialiasing enabled. The FilePath points to a PNG file containing the resulting image.