File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1- // Copyright (c) 2022 Ultimaker B.V.
1+ // Copyright (c) 2025 Ultimaker B.V.
22// pySavitar is released under the terms of the LGPLv3 or higher.
33
44class MeshData
@@ -17,4 +17,10 @@ public:
1717 void setVerticesFromBytes(const bytearray& data);
1818
1919 void setFacesFromBytes(const bytearray& data);
20- };
20+
21+ bytearray getUVCoordinatesPerVertexAsBytes(const Scene* scene) const;
22+
23+ void setUVCoordinatesPerVertexAsBytes(const bytearray& data, const std::string& texture_path, Scene* scene);
24+
25+ std::string getTexturePath(const Scene* scene) const;
26+ };
Original file line number Diff line number Diff line change 1- // Copyright (c) 2022 Ultimaker B.V.
1+ // Copyright (c) 2025 Ultimaker B.V.
22// pySavitar is released under the terms of the LGPLv3 or higher.
33
44class SceneNode
@@ -20,8 +20,8 @@ public:
2020 std::string getName();
2121 void setName(std::string name);
2222
23- std::string getId();
24- void setId(std::string id);
23+ int getId();
24+ void setId(const int id);
2525
2626 const std::map<std::string, MetadataEntry>& getSettings() const;
2727 void setSetting(const std::string& key, MetadataEntry& entry);
You can’t perform that action at this time.
0 commit comments