mirror of
https://gitlab.com/sheaf/metabrush.git
synced 2024-11-06 07:13:37 +00:00
11 lines
235 B
Haskell
11 lines
235 B
Haskell
|
module MetaBrush.Stroke where
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
|
data StrokePoint
|
||
|
= StrokePoint
|
||
|
{ center :: Point2D Double
|
||
|
,
|
||
|
|
||
|
newtype Stroke =
|
||
|
Stroke { strokePoints :: Seq (
|