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