Ignore:
Timestamp:
04/30/14 13:28:42 (10 years ago)
Author:
rgolebiewski
Message:

Changed type of value returned by some functions (two initializers and one setter) to void.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/model/geometry/meshbuilder.h

    r193 r239  
    2727                        Iterator(const double _density);
    2828                        double getDensity() const;
    29                         double setDensity(const double _density);
     29                        void setDensity(const double _density);
    3030                        virtual bool tryGetNext(Pt3D &point) = 0;
    3131                        void forEach(Callback &callback);
     
    240240                public:
    241241                        BoundingBoxVolume(const double _density);
    242                         bool initialize(const Model &model);
    243                         bool initialize(const Pt3D &lowerBoundary, const Pt3D &upperBoundary);
     242                        void initialize(const Model &model);
     243                        void initialize(const Pt3D &lowerBoundary, const Pt3D &upperBoundary);
    244244                        bool tryGetNext(Pt3D &point);
    245245        };
Note: See TracChangeset for help on using the changeset viewer.