-
Notifications
You must be signed in to change notification settings - Fork 733
Open
Labels
Description
There is a small typo in the PolygonPool::trimTriangles() method name:
openvdb/openvdb/openvdb/tools/VolumeToMesh.h
Line 146 in 19013e3
| 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!