Files
cga/Parser/Meshparser.hs

29 lines
781 B
Haskell
Raw Normal View History

{-# OPTIONS_HADDOCK ignore-exports #-}
module Parser.Meshparser (meshToArr) where
2014-10-10 17:40:08 +02:00
import Algebra.VectorTypes
import Control.Applicative
import Diagrams.TwoD.Types
2014-10-07 19:12:07 +02:00
import Parser.Core
2014-10-01 00:05:29 +02:00
-- | Convert a text String with multiple vertices into
-- an array of float tuples.
2014-10-01 00:05:29 +02:00
meshToArr :: String -- ^ the string to convert
-> [PT] -- ^ the resulting vertice table
2014-10-10 17:48:22 +02:00
meshToArr =
2014-10-10 17:40:25 +02:00
fmap p2 .
2014-10-10 00:19:05 +02:00
fmap (\(Just (x, _)) -> x) .
filter (/= Nothing) .
fmap (runParser parseVertice) .
2014-10-10 17:48:22 +02:00
lines
-- | Creates a Parser that accepts a single vertice, such as 'v 1.0 2.0'.
2014-10-01 00:05:29 +02:00
parseVertice :: Parser (Double, Double)
2014-10-10 00:19:05 +02:00
parseVertice =
(,) <$>
(char 'v' *> spaces *> allDouble) <*>
(spaces *> allDouble)