Safe Haskell | None |
---|---|
Language | Haskell2010 |
Types and functions for the <circle> SVG element.
Synopsis
- data SVG_Circle = SVG_Circle {}
- svg_circle_pos_centerX :: Lens' SVG_Circle (Pos CenterX)
- svg_circle_pos_centerY :: Lens' SVG_Circle (Pos CenterY)
- svg_circle_radius :: Lens' SVG_Circle (Radius ())
- makeCircleProps :: SVG_Circle -> Map Text Text
Documentation
data SVG_Circle Source #
Properties for the <circle> element.
Instances
Eq SVG_Circle Source # | |
Defined in Reflex.Dom.Widget.SVG.Types.SVG_Circle (==) :: SVG_Circle -> SVG_Circle -> Bool # (/=) :: SVG_Circle -> SVG_Circle -> Bool # | |
Show SVG_Circle Source # | |
Defined in Reflex.Dom.Widget.SVG.Types.SVG_Circle showsPrec :: Int -> SVG_Circle -> ShowS # show :: SVG_Circle -> String # showList :: [SVG_Circle] -> ShowS # |
svg_circle_pos_centerX :: Lens' SVG_Circle (Pos CenterX) Source #
Lens for the Center X position of an SVG_Circle
svg_circle_pos_centerY :: Lens' SVG_Circle (Pos CenterY) Source #
Lens for the Center Y position of an SVG_Circle
svg_circle_radius :: Lens' SVG_Circle (Radius ()) Source #
Lens for the Radius
of an SVG_Circle
makeCircleProps :: SVG_Circle -> Map Text Text Source #
Convert the given properties to the correct attributes for a <circle>.