Copyright | (c) Tim Docker 2014 |
---|---|
License | BSD-style (see chart/COPYRIGHT) |
Safe Haskell | None |
Language | Haskell98 |
- data LineCap
- data LineJoin
- data LineStyle = LineStyle {}
- data FontSlant
- data FontWeight
- data FontStyle = FontStyle {}
- data HTextAnchor
- data VTextAnchor
- data TextSize = TextSize {}
- newtype FillStyle = FillStyleSolid {}
- type AlignmentFn = Point -> Point
- data AlignmentFns = AlignmentFns {}
- bitmapAlignmentFns :: AlignmentFns
- vectorAlignmentFns :: AlignmentFns
- line_width :: Lens' LineStyle Double
- line_join :: Lens' LineStyle LineJoin
- line_dashes :: Lens' LineStyle [Double]
- line_color :: Lens' LineStyle (AlphaColour Double)
- line_cap :: Lens' LineStyle LineCap
- font_weight :: Lens' FontStyle FontWeight
- font_slant :: Lens' FontStyle FontSlant
- font_size :: Lens' FontStyle Double
- font_name :: Lens' FontStyle String
- font_color :: Lens' FontStyle (AlphaColour Double)
- fill_color :: Iso' FillStyle (AlphaColour Double)
Documentation
The different supported line ends.
LineCapButt | Just cut the line straight. |
LineCapRound | Make a rounded line end. |
LineCapSquare | Make a square that ends the line. |
The different supported ways to join line ends.
LineJoinMiter | Extends the outline until they meet each other. |
LineJoinRound | Draw a circle fragment to connet line end. |
LineJoinBevel | Like miter, but cuts it off if a certain threshold is exceeded. |
Data type for the style of a line.
LineStyle | |
|
The possible slants of a font.
FontSlantNormal | Normal font style without slant. |
FontSlantItalic | With a slight slant. |
FontSlantOblique | With a greater slant. |
data FontWeight Source
The possible weights of a font.
FontWeightNormal | Normal font style without weight. |
FontWeightBold | Bold font. |
Eq FontWeight | |
Ord FontWeight | |
Show FontWeight | |
Default FontWeight | The default font weight. |
Data type for a font.
FontStyle | |
|
data HTextAnchor Source
Possible horizontal anchor points for text.
data VTextAnchor Source
Possible vertical anchor points for text.
Text metrics returned by textSize
.
TextSize | |
|
Abstract data type for a fill style.
The contained action sets the required fill style in the rendering state.
type AlignmentFn = Point -> Point Source
A function to align points for a certain rendering device.
data AlignmentFns Source
Holds the point and coordinate alignment function.
AlignmentFns | |
|
bitmapAlignmentFns :: AlignmentFns Source
Alignment to render on raster based graphics.
vectorAlignmentFns :: AlignmentFns Source
Alignment to render on vector based graphics.