feat(geometrySpreadsheet): read attributes from geometry

This commit is contained in:
parker
2025-08-10 02:01:28 +01:00
parent 898291e39e
commit add55e720f
7 changed files with 145 additions and 5 deletions

View File

@@ -22,7 +22,8 @@ namespace enzo{
Attribute(std::string name, ga::AttributeType type);
Attribute(const Attribute& other);
AttributeType getType();
std::string getName();
std::string getName() const;
unsigned int getTypeSize() const;
@@ -40,6 +41,7 @@ namespace enzo{
bool readOnly_=false;
ga::AttributeType type_;
unsigned int typeSize_=1;
std::string name_;