diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-02-17 18:45:30 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-02-17 18:45:30 +0000 |
commit | f3aa7850519bf022689192e7d52ff380daa9f2d1 (patch) | |
tree | c8af0a9fe688ebfb5e9e973010d47bf6ae80a91b /game/geoData.h | |
parent | Fixes and tests to new range helpers (diff) | |
download | ilt-f3aa7850519bf022689192e7d52ff380daa9f2d1.tar.bz2 ilt-f3aa7850519bf022689192e7d52ff380daa9f2d1.tar.xz ilt-f3aa7850519bf022689192e7d52ff380daa9f2d1.zip |
Refactor GeoData::setHeights until a struct made of a logical breakdown of the process
Diffstat (limited to 'game/geoData.h')
-rw-r--r-- | game/geoData.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/geoData.h b/game/geoData.h index 1a93d03..586b48d 100644 --- a/game/geoData.h +++ b/game/geoData.h @@ -73,7 +73,7 @@ public: } protected: - [[nodiscard]] VertexHandle setPoint(GlobalPosition3D point, const SetHeightsOpts &); + [[nodiscard]] VertexHandle setPoint(GlobalPosition3D point, RelativeDistance nearNodeTolerance); void updateAllVertexNormals(); template<std::ranges::range R> void updateAllVertexNormals(const R &); void updateVertexNormal(VertexHandle); |