Improve overall style and indenting

This commit is contained in:
2014-10-10 00:19:05 +02:00
parent 22482f7c49
commit 12da4040dc
9 changed files with 237 additions and 195 deletions

View File

@@ -12,16 +12,18 @@ import Parser.Core
-- an array of float tuples.
meshToArr :: String -- ^ the string to convert
-> [PT] -- ^ the resulting vertice table
meshToArr xs = fmap (p2) .
fmap (\(Just (x, _)) -> x) .
filter (/= Nothing) .
fmap (runParser parseVertice) .
lines $
xs
meshToArr xs =
fmap (p2) .
fmap (\(Just (x, _)) -> x) .
filter (/= Nothing) .
fmap (runParser parseVertice) .
lines $
xs
-- | Creates a Parser that accepts a single vertice, such as 'v 1.0 2.0'.
parseVertice :: Parser (Double, Double)
parseVertice = (,) <$>
(char 'v' *> spaces *> posDouble) <*>
(spaces *> posDouble)
parseVertice =
(,) <$>
(char 'v' *> spaces *> posDouble) <*>
(spaces *> posDouble)