Files
loop/src/Dodge/ShortShow.hs
T
2022-04-26 08:57:46 +01:00

6 lines
158 B
Haskell

module Dodge.ShortShow where
import Geometry
shortPoint2 :: Point2 -> String
shortPoint2 (V2 x y) = "x" ++ show (round x::Int) ++ "y" ++ show (round y::Int)