Changeset 1022 for cpp/frams


Ignore:
Timestamp:
07/28/20 21:27:07 (4 years ago)
Author:
Maciej Komosinski
Message:

Cosmetic

Location:
cpp/frams/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/util/3d.cpp

    r1020 r1022  
    106106}
    107107
    108 double Pt3D::minComponent() const
     108double Pt3D::minComponentValue() const
    109109{
    110110        return std::min(x, std::min(y, z));
    111111}
    112112
    113 double Pt3D::maxComponent() const
     113double Pt3D::maxComponentValue() const
    114114{
    115115        return std::max(x, std::max(y, z));
  • cpp/frams/util/3d.h

    r1020 r1022  
    4444        void getMin(const Pt3D& p);
    4545        void getMax(const Pt3D& p);
    46         double minComponent() const;
    47         double maxComponent() const;
     46        double minComponentValue() const;
     47        double maxComponentValue() const;
    4848        /** vector length = \f$\sqrt{x^2+y^2+z^2}\f$  */
    4949        double operator()() const;
Note: See TracChangeset for help on using the changeset viewer.