- Timestamp:
- 07/28/20 21:27:07 (4 years ago)
- Location:
- cpp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/README.txt
r780 r1022 24 24 +- fH - ...for genetic format fH (multidimensional handles) 25 25 +- fL - ...for genetic format fL (Lindenmayer systems) 26 +- fS - ...for genetic format fS (similar to f1, but for solid shapes) 26 27 +- fn - ...for genetic format fn (numerical optimization encoding) 27 28 +- fT - ...for genetic format fT (educational: ATGC sequences) -
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)); -
cpp/frams/util/3d.h
r1020 r1022 44 44 void getMin(const Pt3D& p); 45 45 void getMax(const Pt3D& p); 46 double minComponent () const;47 double maxComponent () const;46 double minComponentValue() const; 47 double maxComponentValue() const; 48 48 /** vector length = \f$\sqrt{x^2+y^2+z^2}\f$ */ 49 49 double operator()() const;
Note: See TracChangeset
for help on using the changeset viewer.