Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_point_polar.h


Ignore:
Timestamp:
Mar 19, 2021, 9:15:03 AM (3 years ago)
Author:
stoecker
Message:

update to qwt verion 6.1.1 to fix build with newer Qt5

File:
1 edited

Legend:

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

    r8127 r9383  
    3131    QwtPointPolar();
    3232    QwtPointPolar( double azimuth, double radius );
    33     QwtPointPolar( const QwtPointPolar & );
    3433    QwtPointPolar( const QPointF & );
    3534
     
    8079    d_azimuth( azimuth ),
    8180    d_radius( radius )
    82 {
    83 }
    84 
    85 /*!
    86     Constructs a point using the values of the point specified.
    87     \param other Other point
    88 */
    89 inline QwtPointPolar::QwtPointPolar( const QwtPointPolar &other ):
    90     d_azimuth( other.d_azimuth ),
    91     d_radius( other.d_radius )
    9281{
    9382}
     
    191180inline QPointF qwtFastDegree2Pos( const QPointF &pole,
    192181    double radius, double angle )
    193 {   
     182{
    194183    return qwtFastPolar2Pos( pole, radius, angle / 180.0 * M_PI );
    195 } 
     184}
    196185
    197186inline QwtPointPolar qwtFastPos2Polar( const QPointF &pos )
     
    201190}
    202191
    203 #endif 
     192#endif
Note: See TracChangeset for help on using the changeset viewer.