mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 00:36:30 +02:00
make getNumPalms() const
This commit is contained in:
parent
4bfdce3910
commit
4b3fd2166d
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public:
|
||||||
|
|
||||||
std::vector<PalmData>& getPalms() { return _palms; }
|
std::vector<PalmData>& getPalms() { return _palms; }
|
||||||
const std::vector<PalmData>& getPalms() const { return _palms; }
|
const std::vector<PalmData>& getPalms() const { return _palms; }
|
||||||
size_t getNumPalms() { return _palms.size(); }
|
size_t getNumPalms() const { return _palms.size(); }
|
||||||
PalmData& addNewPalm();
|
PalmData& addNewPalm();
|
||||||
|
|
||||||
/// Finds the indices of the left and right palms according to their locations, or -1 if either or
|
/// Finds the indices of the left and right palms according to their locations, or -1 if either or
|
||||||
|
|
Loading…
Reference in a new issue