There is a small typo in the PolygonPool::trimTriangles() method name:
|
inline bool trimTrinagles(const size_t n, bool reallocate = false); |
The following line has the 'a' and the 'n' transposed:
inline bool trimTrinagles(const size_t n, bool reallocate = false);
The corrected version:
inline bool trimTriangles(const size_t n, bool reallocate = false);
This has been the case since at least v10 (packaged in Debian 13), since that is where I noticed it. Not a big deal, but I thought I'd let you guys know!
There is a small typo in the
PolygonPool::trimTriangles()method name:openvdb/openvdb/openvdb/tools/VolumeToMesh.h
Line 146 in 19013e3
The following line has the 'a' and the 'n' transposed:
The corrected version:
This has been the case since at least v10 (packaged in Debian 13), since that is where I noticed it. Not a big deal, but I thought I'd let you guys know!