Copyright | (c) 2017 Cristian Adrián Ontivero |
---|---|
License | BSD3 |
Stability | experimental |
Portability | unknown |
Safe Haskell | None |
Language | Haskell2010 |
Hasmin.Types.BasicShape
Description
- data BasicShape
- data ShapeRadius
- data AtMost2 a
- data FillRule
Documentation
data BasicShape Source #
CSS <basic-shape> data type.
Constructors
Inset (NonEmpty ShapeArg) (Maybe BorderRadius) | |
Circle (Maybe ShapeRadius) (Maybe Position) | |
Ellipse (AtMost2 ShapeRadius) (Maybe Position) | |
Polygon (Maybe FillRule) (NonEmpty (ShapeArg, ShapeArg)) |
Instances
data ShapeRadius Source #
Constructors
SRLength Length | |
SRPercentage Percentage | |
SRClosestSide | |
SRFarthestSide |
Instances