packages feed

STL-0.1.0.0: src/Graphics/Formats/STL.hs

module Graphics.Formats.STL (
      prettySTL
    , stlParser
    , STL(..), Triangle(..), Vector(..)
    )
    where

import Graphics.Formats.STL.Printer (prettySTL)
import Graphics.Formats.STL.Parser (stlParser)
import Graphics.Formats.STL.Types