A type to describe 2d sizes, containing width and height.
A size with all the dimensions set to zero.
module Composer.Geometry.Size exposing (Size, zero)
{-| A type to describe 2d sizes, containing width and height.
@docs Size, zero
-}
{-| -}
type alias Size =
{ width : Float
, height : Float
}
{-| A size with all the dimensions set to zero.
-}
zero : Size
zero =
{ width = 0
, height = 0
}