diagrams-lib-0.7: src/Diagrams/TwoD/Size.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE TypeFamilies #-}
-----------------------------------------------------------------------------
-- |
-- Module : Diagrams.TwoD.Size
-- Copyright : (c) 2011 diagrams-lib team (see LICENSE)
-- License : BSD-style (see LICENSE)
-- Maintainer : diagrams-discuss@googlegroups.com
--
-- Utilities for working with sizes of two-dimensional objects.
--
-----------------------------------------------------------------------------
module Diagrams.TwoD.Size
(
-- * Size and extent of diagrams in R2
-- ** Computing sizes
width, height, size2D, sizeSpec2D
, extentX, extentY, center2D
-- ** Specifying sizes
, SizeSpec2D(..)
, mkSizeSpec
, requiredScaleT, requiredScale
-- ** Changing the size of things
, sized, sizedAs
) where
import Diagrams.Core
import Diagrams.TwoD.Types
import Diagrams.TwoD.Vector
import Control.Applicative (liftA2, (<$>))
import Control.Arrow ((&&&), (***))
------------------------------------------------------------
-- Computing diagram sizes
------------------------------------------------------------
-- | Compute the width of an enveloped object.
width :: (Enveloped a, V a ~ R2) => a -> Double
width = maybe 0 (negate . uncurry (-)) . extentX
-- | Compute the height of an enveloped object.
height :: (Enveloped a, V a ~ R2) => a -> Double
height = maybe 0 (negate . uncurry (-)) . extentY
-- | Compute the width and height of an enveloped object.
size2D :: (Enveloped a, V a ~ R2) => a -> (Double, Double)
size2D = width &&& height
-- | Compute the size of an enveloped object as a 'SizeSpec2D' value.
sizeSpec2D :: (Enveloped a, V a ~ R2) => a -> SizeSpec2D
sizeSpec2D = uncurry Dims . size2D
-- | Compute the absolute x-coordinate range of an enveloped object in
-- R2, in the form (lo,hi). Return @Nothing@ for objects with an
-- empty envelope.
extentX :: (Enveloped a, V a ~ R2) => a -> Maybe (Double, Double)
extentX d = (\f -> (-f unit_X, f unitX)) <$> (appEnvelope . getEnvelope $ d)
-- | Compute the absolute y-coordinate range of an enveloped object in
-- R2, in the form (lo,hi).
extentY :: (Enveloped a, V a ~ R2) => a -> Maybe (Double, Double)
extentY d = (\f -> (-f unit_Y, f unitY)) <$> (appEnvelope . getEnvelope $ d)
-- | Compute the point at the center (in the x- and y-directions) of a
-- enveloped object. Return the origin for objects with an empty
-- envelope.
center2D :: (Enveloped a, V a ~ R2) => a -> P2
center2D = maybe origin (p2 . (mid *** mid)) . mm . (extentX &&& extentY)
where mm = uncurry (liftA2 (,))
mid = (/2) . uncurry (+)
------------------------------------------------------------
-- Size specifications
------------------------------------------------------------
-- | A specification of a (requested) rectangular size.
data SizeSpec2D = Width Double -- ^ Specify an explicit
-- width. The height should be
-- determined automatically (so
-- as to preserve aspect ratio).
| Height Double -- ^ Specify an explicit
-- height. The width should be
-- determined automatically (so
-- as to preserve aspect ratio).
| Dims Double Double -- ^ An explicit specification
-- of a width and height.
| Absolute -- ^ Absolute size: use whatever
-- size an object already has;
-- do not rescale.
deriving (Eq, Ord, Show)
-- | Create a size specification from a possibly-specified width and
-- height.
mkSizeSpec :: Maybe Double -> Maybe Double -> SizeSpec2D
mkSizeSpec Nothing Nothing = Absolute
mkSizeSpec (Just w) Nothing = Width w
mkSizeSpec Nothing (Just h) = Height h
mkSizeSpec (Just w) (Just h) = Dims w h
-- | @requiredScaleT spec sz@ returns a transformation (a uniform scale)
-- which can be applied to something of size @sz@ to make it fit the
-- requested size @spec@, without changing the aspect ratio.
requiredScaleT :: SizeSpec2D -> (Double, Double) -> Transformation R2
requiredScaleT spec size = scaling (requiredScale spec size)
-- | @requiredScale spec sz@ returns a scaling factor necessary to
-- make something of size @sz@ fit the requested size @spec@,
-- without changing the aspect ratio. Hence an explicit
-- specification of both dimensions may not be honored if the aspect
-- ratios do not match; in that case the scaling will be as large as
-- possible so that the object still fits within the requested size.
requiredScale :: SizeSpec2D -> (Double, Double) -> Double
requiredScale Absolute _ = 1
requiredScale (Width wSpec) (w,_)
| wSpec == 0 || w == 0 = 1
| otherwise = wSpec / w
requiredScale (Height hSpec) (_,h)
| hSpec == 0 || h == 0 = 1
| otherwise = hSpec / h
requiredScale (Dims wSpec hSpec) (w,h) = s
where xscale = wSpec / w
yscale = hSpec / h
s' = min xscale yscale
s | isInfinite s' = 1
| otherwise = s'
-- | Uniformly scale any enveloped object so that it fits within the
-- given size.
sized :: (Transformable a, Enveloped a, V a ~ R2)
=> SizeSpec2D -> a -> a
sized spec a = transform (requiredScaleT spec (size2D a)) a
-- | Uniformly scale an enveloped object so that it \"has the same
-- size as\" (fits within the width and height of) some other
-- object.
sizedAs :: ( Transformable a, Enveloped a, V a ~ R2
, Enveloped b, V b ~ R2)
=> b -> a -> a
sizedAs other = sized (sizeSpec2D other)