Changeset 1022 for cpp/frams/util/3d.cpp
- Timestamp:
- 07/28/20 21:27:07 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/util/3d.cpp
r1020 r1022 106 106 } 107 107 108 double Pt3D::minComponent () const108 double Pt3D::minComponentValue() const 109 109 { 110 110 return std::min(x, std::min(y, z)); 111 111 } 112 112 113 double Pt3D::maxComponent () const113 double Pt3D::maxComponentValue() const 114 114 { 115 115 return std::max(x, std::max(y, z));
Note: See TracChangeset
for help on using the changeset viewer.