feat: basic geometry pass between operators

This commit is contained in:
parker
2025-07-08 19:13:15 +01:00
parent 0520d35b2c
commit 6f2a1ce532
7 changed files with 54 additions and 29 deletions

View File

@@ -59,6 +59,11 @@ public:
return *data_;
}
size_t getSize()
{
return data_->size();
}
T getValue(size_t pos) const
{
// TODO:protect against invalid positions