diagrams-pgf-0.1.0.1: PGF backend for diagrams drawing EDSL.

Copyright(c) 2015 Christopher Chalmers
LicenseBSD-style (see LICENSE)
Maintainerdiagrams-discuss@googlegroups.com
Safe HaskellNone
LanguageHaskell2010

Diagrams.Backend.PGF.Render

Contents

Description

This is an internal module exposeing internals for rendering a diagram. This is for advanced use only. PGF has enought for general use.

Synopsis

Documentation

data PGF Source

This data declaration is simply used as a token to distinguish this rendering engine.

Constructors

PGF 

Instances

data family Options b v n

Backend-specific rendering options.

data family Render b v n

An intermediate representation used for rendering primitives. (Typically, this will be some sort of monad, but it need not be.) The Renderable class guarantees that a backend will be able to convert primitives into this type; how these rendered primitives are combined into an ultimate Result is completely up to the backend.

Lenses

surface :: Lens' (Options PGF V2 n) Surface Source

Lens onto the surface used to render.

sizeSpec :: Lens' (Options PGF V2 n) (SizeSpec V2 n) Source

Lens onto the SizeSpec2D.

readable :: Lens' (Options PGF V2 n) Bool Source

Lens onto whether the lines of the TeX output are indented.

standalone :: Lens' (Options PGF V2 n) Bool Source

Lens onto whether a standalone TeX document should be produced.

Utilities

escapeString :: String -> String Source

Escapes some common characters in a string. Note that this does not mean the string can't create an error, it mearly escapes common characters.