{-# OPTIONS -Wall #-} -------------------------------------------------------------------------------- -- | -- Module : Wumpus.Drawing.Extras.Clip -- Copyright : (c) Stephen Tetley 2011 -- License : BSD3 -- -- Maintainer : Stephen Tetley -- Stability : highly unstable -- Portability : GHC -- -- Clipping paths. -- -- Note - at the moment there is nothing much to this module. -- Ideally, clipping would be defined in Wumpus-Basic, but clipping -- needs a higher level path object than Wumpus-Basic provides. -- -------------------------------------------------------------------------------- module Wumpus.Drawing.Extras.Clip ( locClip ) where import Wumpus.Drawing.Paths.Relative import Wumpus.Basic.Kernel -- package: wumpus-basic -- | Clip a LocGraphic. -- locClip :: InterpretUnit u => RelPath u -> LocGraphic u -> LocGraphic u locClip rp gf = promoteLoc $ \pt -> zapQuery (toPrimPath pt rp) >>= \pp -> clipImage pp (gf `at` pt)