wavefront 0.1 → 0.1.0.1
raw patch · 3 files changed
+28/−3 lines, 3 files
Files
- CHANGELOG.md +4/−0
- src/Codec/Wavefront.hs +20/−0
- wavefront.cabal +4/−3
CHANGELOG.md view
@@ -1,3 +1,7 @@+### 0.1.0.1++- Added forgotten Codec.Wavefront.+ # 0.1 - Initial revision.
+ src/Codec/Wavefront.hs view
@@ -0,0 +1,20 @@+-----------------------------------------------------------------------------+-- |+-- Copyright : (C) 2015 Dimitri Sabadie+-- License : BSD3+--+-- Maintainer : Dimitri Sabadie <dimitri.sabadie@gmail.com>+-- Stability : experimental+-- Portability : portable+--+-- Currently, you can parse a file and get a 'WavefrontOBJ' with the 'fromFile'+-- function.+-----------------------------------------------------------------------------++module Codec.Wavefront (+ module Codec.Wavefront.Object+ , module Codec.Wavefront.IO+ ) where++import Codec.Wavefront.Object+import Codec.Wavefront.IO
wavefront.cabal view
@@ -1,5 +1,5 @@ name: wavefront-version: 0.1+version: 0.1.0.1 synopsis: Wavefront OBJ loader description: A Wavefront OBJ loader. Currently supports polygonal information. More could be added if needed (like curves and surface) if people contribute. Feel free@@ -15,7 +15,7 @@ category: Codec build-type: Simple extra-source-files: CHANGELOG.md-cabal-version: >=1.10+cabal-version: >= 1.10 source-repository head type: git@@ -24,7 +24,8 @@ library ghc-options: -W -Wall - exposed-modules: Codec.Wavefront.Face+ exposed-modules: Codec.Wavefront+ , Codec.Wavefront.Face , Codec.Wavefront.IO , Codec.Wavefront.Line , Codec.Wavefront.Location