STL exporting using assimp

This commit is contained in:
Vladyslav Baranovskyi
2025-02-06 11:28:14 +02:00
parent 0d2bcbbdf6
commit e603668023
2 changed files with 89 additions and 0 deletions

View File

@@ -19,5 +19,6 @@ namespace OpenVulkano::Scene
static void WriteObjAsZip(Geometry* geometry, const std::string& texturePath, const std::string& zipPath);
static void WriteAsUSDZ(Geometry* geometry, const std::string& texturePath, const std::string& usdzPath);
static void WriteAsFBX(Geometry* geometry, const std::string& texturePath, const std::string& fbxPath);
static void WriteAsSTL(Geometry* geometry, const std::string& filePath, bool binary);
};
}