File: //opt/alt/python27/lib64/python2.7/site-packages/mpl_toolkits/axes_grid1/axes_size.pyc
�
[�3Lc @ s d Z d d l j Z d e f d � � YZ d e f d � � YZ d e f d � � YZ e Z d e f d
� � YZ d e f d � � YZ d
e f d � � YZ
d e f d � � YZ d e f d � � YZ d e f d � � YZ
d e f d � � YZ d d � Z d S( s�
provides a classese of simlpe units that will be used with AxesDivider
class (or others) to determine the size of each axes. The unit
classes define `get_size` method that returns a tuple of two floats,
meaning relative and absolute sizes, respectively.
Note that this class is nothing more than a simple tuple of two
floats. Take a look at the Divider class to see how these two
values are used.
i����Nt _Basec B s e Z d Z RS( s
Base class( t __name__t
__module__t __doc__( ( ( sT /opt/alt/python27/lib64/python2.7/site-packages/mpl_toolkits/axes_grid1/axes_size.pyR s t Fixedc B s e Z d Z d � Z d � Z RS( sJ Simple fixed size with absolute part = *fixed_size* and relative part = 0c C s
| | _ d S( N( t
fixed_size( t selfR ( ( sT /opt/alt/python27/lib64/python2.7/site-packages/mpl_toolkits/axes_grid1/axes_size.pyt __init__ s c C s d } | j } | | f S( Ng ( R ( R t renderert rel_sizet abs_size( ( sT /opt/alt/python27/lib64/python2.7/site-packages/mpl_toolkits/axes_grid1/axes_size.pyt get_size s ( R R R R R ( ( ( sT /opt/alt/python27/lib64/python2.7/site-packages/mpl_toolkits/axes_grid1/axes_size.pyR s t Scaledc B s e Z d Z d � Z d � Z RS( sP Simple scaled(?) size with absolute part = 0 and relative part = *scalable_size*c C s
| | _ d S( N( t _scalable_size( R t
scalable_size( ( sT /opt/alt/python27/lib64/python2.7/site-packages/mpl_toolkits/axes_grid1/axes_size.pyR "