Safe Haskell | None |
---|---|
Language | Haskell2010 |
Types and functions for the <ellipse> SVG element.
Synopsis
Documentation
data SVG_Ellipse Source #
Properties for the <ellipse> element.
Instances
Eq SVG_Ellipse Source # | |
Defined in Reflex.Dom.Widget.SVG.Types.SVG_Ellipse (==) :: SVG_Ellipse -> SVG_Ellipse -> Bool # (/=) :: SVG_Ellipse -> SVG_Ellipse -> Bool # | |
Show SVG_Ellipse Source # | |
Defined in Reflex.Dom.Widget.SVG.Types.SVG_Ellipse showsPrec :: Int -> SVG_Ellipse -> ShowS # show :: SVG_Ellipse -> String # showList :: [SVG_Ellipse] -> ShowS # |
svg_ellipse_radius_x :: Lens' SVG_Ellipse (Radius X) Source #
Lens for the Radius along the X axis of an SVG_Ellipse
svg_ellipse_radius_y :: Lens' SVG_Ellipse (Radius Y) Source #
Lens for the Radius along the Y axis of an SVG_Ellipse
svg_ellipse_center_x :: Lens' SVG_Ellipse (Pos CenterX) Source #
Lens for the Center X position of an SVG_Ellipse
svg_ellipse_center_y :: Lens' SVG_Ellipse (Pos CenterY) Source #
Lens for the Center Y position of an SVG_Ellipse
makeEllipseProps :: SVG_Ellipse -> Map Text Text Source #
Convert the given properties to the correct attributes for a <ellipse>.