Changeset 1022 for cpp


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

Cosmetic

Location:
cpp
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpp/README.txt

    r780 r1022  
    2424         +- fH         - ...for genetic format fH (multidimensional handles)
    2525         +- fL         - ...for genetic format fL (Lindenmayer systems)
     26         +- fS         - ...for genetic format fS (similar to f1, but for solid shapes)
    2627         +- fn         - ...for genetic format fn (numerical optimization encoding)
    2728         +- fT         - ...for genetic format fT (educational: ATGC sequences)
  • 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.