Changeset 8127 in ntrip for trunk/BNC/qwt/qwt_point_3d.h


Ignore:
Timestamp:
May 10, 2017, 3:20:54 PM (7 years ago)
Author:
stoecker
Message:

update qwt and qwtpolar, many QT5 fixes (unfinished)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/qwt/qwt_point_3d.h

    r4271 r8127  
    103103
    104104/*!
    105     Returns true if the point is null; otherwise returns false.
     105    \return True if the point is null; otherwise returns false.
    106106
    107107    A point is considered to be null if x, y and z-coordinates
     
    110110inline bool QwtPoint3D::isNull() const
    111111{
    112     return d_x == 0.0 && d_y == 0.0 && d_z == 0;
     112    return d_x == 0.0 && d_y == 0.0 && d_z == 0.0;
    113113}
    114114
    115 //! Returns the x-coordinate of the point.
     115//! \return The x-coordinate of the point.
    116116inline double QwtPoint3D::x() const
    117117{
     
    119119}
    120120
    121 //! Returns the y-coordinate of the point.
     121//! \return The y-coordinate of the point.
    122122inline double QwtPoint3D::y() const
    123123{
     
    125125}
    126126
    127 //! Returns the z-coordinate of the point.
     127//! \return The z-coordinate of the point.
    128128inline double QwtPoint3D::z() const
    129129{
     
    131131}
    132132
    133 //! Returns a reference to the x-coordinate of the point.
     133//! \return A reference to the x-coordinate of the point.
    134134inline double &QwtPoint3D::rx()
    135135{
     
    137137}
    138138
    139 //! Returns a reference to the y-coordinate of the point.
     139//! \return A reference to the y-coordinate of the point.
    140140inline double &QwtPoint3D::ry()
    141141{
     
    143143}
    144144
    145 //! Returns a reference to the z-coordinate of the point.
     145//! \return A reference to the z-coordinate of the point.
    146146inline double &QwtPoint3D::rz()
    147147{
     
    168168
    169169/*!
    170    Rounds 2D point, where the z coordinate is dropped.
     170   \return 2D point, where the z coordinate is dropped.
    171171*/
    172172inline QPointF QwtPoint3D::toPoint() const
     
    175175}
    176176
    177 //! Returns true if this point and other are equal; otherwise returns false.
     177//! \return True, if this point and other are equal; otherwise returns false.
    178178inline bool QwtPoint3D::operator==( const QwtPoint3D &other ) const
    179179{
     
    181181}
    182182
    183 //! Returns true if this rect and other are different; otherwise returns false.
     183//! \return True if this rect and other are different; otherwise returns false.
    184184inline bool QwtPoint3D::operator!=( const QwtPoint3D &other ) const
    185185{
Note: See TracChangeset for help on using the changeset viewer.