metabrush/src/app/MetaBrush/Stroke.hs

14 lines
242 B
Haskell
Raw Normal View History

2020-08-04 06:15:06 +00:00
module MetaBrush.Stroke where
--------------------------------------------------------------------------------
2020-08-05 20:23:16 +00:00
{-
2020-08-04 06:15:06 +00:00
data StrokePoint
= StrokePoint
{ center :: Point2D Double
,
newtype Stroke =
2020-08-05 20:23:16 +00:00
Stroke { strokePoints :: Seq (
-}