Skip to content
Snippets Groups Projects
Commit 3749bc57 authored by Mathieu Westphal (Kitware)'s avatar Mathieu Westphal (Kitware) :zap:
Browse files

OBJImporter: Improve testing logic

parent 45b35403
No related branches found
No related tags found
No related merge requests found
......@@ -45,8 +45,16 @@ int TestOBJImporter(int argc, char* argv[])
vtkNew<vtkOBJImporter> importer;
importer->SetFileName(filenameOBJ.data());
importer->SetFileNameMTL(filenameMTL.data());
importer->SetTexturePath(texfile1.data());
if (!filenameMTL.empty())
{
importer->SetFileNameMTL(filenameMTL.data());
}
if (!texfile1.empty())
{
importer->SetTexturePath(texfile1.data());
}
vtkNew<vtkRenderer> ren;
vtkNew<vtkRenderWindow> renWin;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment