Changeset 5480


Ignore:
Timestamp:
May 9, 2015 1:20:00 PM (9 years ago)
Author:
ldelgass
Message:

remove unused member var

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nanovis/trunk/Axis.h

    r5478 r5480  
    106106                         * of ticks as defined by a given sweep. */
    107107
    108     bool _autoscale;            /**< Indicates if the ticks are autoscaled. */
    109108    /*
    110109     * Tick locations may be generated in two fashions
     
    166165    }
    167166
     167    /**
     168     * This returns the minimum bound of the data, which may
     169     * be different than the min() of the axis because of
     170     * tight/loose placement of major ticks
     171     */
    168172    double dataMin() const
    169173    {
     
    171175    }
    172176
     177    /**
     178     * This returns the maximum bound of the data, which may
     179     * be different than the min() of the axis because of
     180     * tight/loose placement of major ticks
     181     */
    173182    double dataMax() const
    174183    {
     
    176185    }
    177186
     187    /**
     188     * The minimum bound of the axis
     189     */
    178190    double min() const
    179191    {
     
    181193    }
    182194
     195    /**
     196     * The maximum bound of the axis
     197     */
    183198    double max() const
    184199    {
     
    186201    }
    187202
     203    /**
     204     * The length of the axis
     205     */
    188206    double length() const
    189207    {
Note: See TracChangeset for help on using the changeset viewer.