From 0e5a929408b2a35928669286108fcd95875fb127 Mon Sep 17 00:00:00 2001 From: parker Date: Wed, 20 Aug 2025 18:32:02 +0100 Subject: [PATCH] fix: restore accidental removal of geometry constructor --- src/Engine/Operator/Geometry.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Engine/Operator/Geometry.h b/src/Engine/Operator/Geometry.h index 09bf677..4e616c2 100644 --- a/src/Engine/Operator/Geometry.h +++ b/src/Engine/Operator/Geometry.h @@ -53,6 +53,9 @@ using attributeIterator = std::vector>::iterator; class Geometry { public: + Geometry(); + Geometry(const Geometry& other); + /** * @brief Assignment operator. Performs a deep copy of another Geometry. * @param rhs The Geometry object to copy from.