From 7e670896a6fd81dac6eb52e8fff27f36fefa1086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Mon, 7 Mar 2022 10:30:52 +0100 Subject: [PATCH] - added param 'texture_file' to the Options class, it specifies the path to the texture file - added param 'material_file_extension' to the Options class, it specifies the material file suffix, default is ".mat" as it was before, we needed it becuase Blender expects ".mtl" - removed default and copy constructor and destructor as well as assignment operator, because these are not necessary here, see https://en.cppreference.com/w/cpp/language/rule_of_three (Thanks to Philipp Auersperg-Castell for the patch ) --- Doc/changelog.docu | 6 ++++ src/OpenMesh/Core/IO/Options.hh | 35 +++++++----------------- src/OpenMesh/Core/IO/writer/OBJWriter.cc | 17 ++++++++---- 3 files changed, 27 insertions(+), 31 deletions(-) diff --git a/Doc/changelog.docu b/Doc/changelog.docu index ec0f2ac3..5011ac96 100644 --- a/Doc/changelog.docu +++ b/Doc/changelog.docu @@ -8,6 +8,12 @@ 9.1 (?/?/?) +IO + + Build System