module RandomValues where

type RandomValues =
  { greenPoint : PointRandomValues
  , redPoint : PointRandomValues
  }

type PointRandomValues =
  { angle : Float
  , x : Float
  , y : Float
  }