diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-01-05 11:59:24 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-01-05 11:59:24 +0000 |
commit | ee636e6c5da87e52e1d40e97ce95ed0765f9e819 (patch) | |
tree | b213e64efb2b523c37506da337e2c2a519dddfbe /game/geoData.h | |
parent | Helper to declare and add OpenMesh property declaratively (diff) | |
download | ilt-ee636e6c5da87e52e1d40e97ce95ed0765f9e819.tar.bz2 ilt-ee636e6c5da87e52e1d40e97ce95ed0765f9e819.tar.xz ilt-ee636e6c5da87e52e1d40e97ce95ed0765f9e819.zip |
Return surface face list from setHeights
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 11ba568..2bdc60d 100644 --- a/game/geoData.h +++ b/game/geoData.h @@ -94,7 +94,7 @@ public: RelativeDistance maxSlope = DEFAULT_MAX_SLOPE; }; - void setHeights(std::span<const GlobalPosition3D> triangleStrip, const SetHeightsOpts &); + std::vector<FaceHandle> setHeights(std::span<const GlobalPosition3D> triangleStrip, const SetHeightsOpts &); [[nodiscard]] size_t getGeneration() const; [[nodiscard]] auto |