fix: restore accidental removal of geometry constructor

This commit is contained in:
parker
2025-08-20 18:32:02 +01:00
parent 4eb59a59a6
commit 0e5a929408

View File

@@ -53,6 +53,9 @@ using attributeIterator = std::vector<std::shared_ptr<ga::Attribute>>::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.