9 lines
212 B
Haskell
9 lines
212 B
Haskell
--{-# LANGUAGE TemplateHaskell #-}
|
|
{-# LANGUAGE StrictData #-}
|
|
module Dodge.Distortion.Data where
|
|
import Geometry
|
|
|
|
data Distortion
|
|
= RadialDistortion Point2 Point2 Point2 Float
|
|
deriving (Eq,Ord,Show,Read)
|