Changeset 1022 for cpp/frams/util/3d.cpp


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

Cosmetic

File:
1 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));
Note: See TracChangeset for help on using the changeset viewer.