feat(geometrySpreadsheet): read all attributes of different types from geometry

This commit is contained in:
parker
2025-08-10 14:46:41 +01:00
parent 13da4a79f4
commit 750dfea9a0
6 changed files with 170 additions and 16 deletions

View File

@@ -21,7 +21,7 @@ namespace enzo{
public:
Attribute(std::string name, ga::AttributeType type);
Attribute(const Attribute& other);
AttributeType getType();
AttributeType getType() const;
std::string getName() const;
unsigned int getTypeSize() const;
@@ -29,6 +29,8 @@ namespace enzo{
template <typename T>
friend class AttributeHandle;
template <typename T>
friend class AttributeHandleRO;
private:
// private attributes are attributes that are hidden from the user