{-# LANGUAGE UndecidableInstances #-}
--------------------------------------------------------------------------------
-- |
-- Module      :  HGeometry.HalfSpace
-- Copyright   :  (C) Frank Staals
-- License     :  see the LICENSE file
-- Maintainer  :  Frank Staals
--
-- Representing halfspaces
--
--------------------------------------------------------------------------------
module HGeometry.HalfSpace
  ( module HGeometry.HalfSpace.Class
  , module HGeometry.HalfSpace.Type
  ) where

import HGeometry.HalfSpace.Class
import HGeometry.HalfSpace.Type

--------------------------------------------------------------------------------