blob: 5e40fc59f53b8a42a4d2e430980236ed3b3a6945 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | module RandomValues where
type RandomValues =
  { point1 : PointRandomValues
  , point2 : PointRandomValues
  }
type PointRandomValues =
  { angle : Float
  , x : Float
  , y : Float
  }
 |