aboutsummaryrefslogtreecommitdiff
path: root/src/RandomValues.elm
blob: 5d45b15b53543ccb4f04c2743fe95245f35fe676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module RandomValues where

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

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