diagrams-lib-1.2.0.9: Embedded domain-specific language for declarative graphics

Copyright(c) 2013 diagrams-lib team (see LICENSE)
LicenseBSD-style (see LICENSE)
Maintainerdiagrams-discuss@googlegroups.com
Safe HaskellNone
LanguageHaskell2010

Diagrams.TwoD.Arrowheads

Contents

Description

Standard arrowheads and tails. Each arrowhead or tail is designed to be drawn filled, with a line width of 0, and is normalized to fit inside a circle of diameter 1.

Synopsis

Arrowheads

Standard arrowheads

lineHead :: ArrowHT

A line the same width as the shaft.

Configurable arrowheads

Creates arrowheads of the same shape as the standard heads but where the angle parameter is used to specify the angle to the top left point of the arrowhead.

arrowheadTriangle :: Angle -> ArrowHT

Isoceles triangle style. The above example specifies an angle of `2/5 Turn`.

arrowheadDart :: Angle -> ArrowHT

Isoceles triangle with linear concave base. Inkscape type 1 - dart like.

arrowheadSpike :: Angle -> ArrowHT

Isoceles triangle with curved concave base. Inkscape type 2.

arrowheadThorn :: Angle -> ArrowHT

Curved sides, linear concave base. Illustrator CS5 #3

Arrow tails

Standard arrow tails

lineTail :: ArrowHT

A line the same width as the shaft.

Configurable arrow tails

arrowtailQuill :: Angle -> ArrowHT

The angle is where the top left corner intersects the circle.

Internals

type ArrowHT = Double -> Double -> (Path R2, Path R2)