diff --git a/CMake/ExamplesTesting.cmake b/CMake/ExamplesTesting.cmake index 1f75f6dc034fa95adf1e4073d95ffc2c9546d78d..d39f8b3d4bc359cc229431124b1be175170a01d3 100644 --- a/CMake/ExamplesTesting.cmake +++ b/CMake/ExamplesTesting.cmake @@ -24,7 +24,10 @@ foreach(SOURCE_FILE ${ALL_FILES}) if(SKIP_ADD EQUAL -1) add_test(${KIT}-${EXAMPLE} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${KIT}CxxTests Test${EXAMPLE}) endif() - set_property(TEST ${KIT}-${EXAMPLE} PROPERTY LABELS WikiExamples) + set_property(TEST ${KIT}-${EXAMPLE} + PROPERTY LABELS WikiExamples + PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=TIGHT_VALID" + ) endif() endforeach() set(VTK_BINARY_DIR ${WikiExamples_BINARY_DIR}) @@ -39,4 +42,4 @@ if (VTK_VERSION VERSION_GREATER "8.8") MODULES ${VTK_LIBRARIES} ) endif() -endif() \ No newline at end of file +endif() diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c3776d8e590508d70b1f26bfa99a5ee9eb72e2b..4c5a0f044b28cdeff7681e8ac6544b3e7ee911b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,6 +58,14 @@ set(CMAKE_MODULE_PATH ${VTK_CMAKE_DIR} ) +#----------------------------------------------------------------------------- +# See: https://docs.vtk.org/en/latest/release_details/9.4/image-testing-framework.html +option(DEFAULT_USE_SSIM_IMAGE_COMP "SSIM comparison" ON) +if(DEFAULT_USE_SSIM_IMAGE_COMP) + set(VTK_TESTING_IMAGE_COMPARE_METHOD "TIGHT_VALID" CACHE STRING "SSIM comparison method") + message(STATUS "SSIM comparison method: ${VTK_TESTING_IMAGE_COMPARE_METHOD}") +endif() + #----------------------------------------------------------------------------- # if (VTK_VERSION VERSION_LESS "8.90.0") # include(WikiModuleConfigLegacy) diff --git a/src/Cxx/Graphs/CMakeLists.txt b/src/Cxx/Graphs/CMakeLists.txt index cf2827b2ef43987547e62d7e0238c920a1372f61..49a69679576d55b1965d79a7936c838c1ac189e0 100644 --- a/src/Cxx/Graphs/CMakeLists.txt +++ b/src/Cxx/Graphs/CMakeLists.txt @@ -71,11 +71,6 @@ if (BUILD_TESTING) set(KIT Graphs) set(NEEDS_ARGS ) - endif() - include(${WikiExamples_SOURCE_DIR}/CMake/ExamplesTesting.cmake) -if (BUILD_TESTING) - set(KIT Graphs) - set_tests_properties(${KIT}-SelectedVerticesAndEdges PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=LOOSE_VALID") - set_tests_properties(${KIT}-SelectedVerticesAndEdgesObserver PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=LOOSE_VALID") + include(${WikiExamples_SOURCE_DIR}/CMake/ExamplesTesting.cmake) endif() diff --git a/src/Cxx/IO/CMakeLists.txt b/src/Cxx/IO/CMakeLists.txt index d52447a331bb65e89709520dfbf840ea73433a1b..cc10b8749324757f5c94cca352727d09cc4deb9b 100644 --- a/src/Cxx/IO/CMakeLists.txt +++ b/src/Cxx/IO/CMakeLists.txt @@ -176,7 +176,7 @@ if (BUILD_TESTING) TestImportToExport ${DATA}/iflamingo.3ds iflamingo.obj) add_test(${KIT}-IndividualVRML ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${KIT}CxxTests - TestIndividualVRML ${DATA}/teapot.wrl teapot) + TestIndividualVRML ${DATA}/utah_teapot.wrl teapot) add_test(${KIT}-ImageReader2Factory ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${KIT}CxxTests TestImageReader2Factory ${DATA}/Gourds.png) diff --git a/src/Cxx/IO/IndividualVRML.cxx b/src/Cxx/IO/IndividualVRML.cxx index d484f9c7ddbbe11ee10312f3244627fe1114fd04..1cece00034ffe0259b45c95ac9e453bb0024bc08 100644 --- a/src/Cxx/IO/IndividualVRML.cxx +++ b/src/Cxx/IO/IndividualVRML.cxx @@ -22,7 +22,7 @@ int main(int argc, char* argv[]) if (argc != 3) { - std::cout << "Required arguments: Filename Actorname e.g. teapot.wrl teapot" + std::cout << "Required arguments: Filename Actorname e.g. utah_teapot.wrl teapot" << std::endl; return EXIT_FAILURE; } @@ -41,11 +41,6 @@ int main(int argc, char* argv[]) // VRML Import. vtkNew importer; importer->SetFileName(filename.c_str()); -#ifdef USE_IMPORTER_UPDATE - importer->Update(); -#else - importer->Read(); -#endif importer->SetRenderWindow(renderWindow); importer->Update(); diff --git a/src/Cxx/Images/CMakeLists.txt b/src/Cxx/Images/CMakeLists.txt index 90a893a6d26d417d1c96c579ab130ae43e077b18..17a94d222b46c333538e0f9016a6e87d49766787 100644 --- a/src/Cxx/Images/CMakeLists.txt +++ b/src/Cxx/Images/CMakeLists.txt @@ -218,8 +218,3 @@ if (BUILD_TESTING) include(${WikiExamples_SOURCE_DIR}/CMake/ExamplesTesting.cmake) endif() - -if (BUILD_TESTING) - set(KIT Images) - set_tests_properties(${KIT}-ImageMapper PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=LOOSE_VALID") -endif() diff --git a/src/Cxx/Images/ImageMapper.cxx b/src/Cxx/Images/ImageMapper.cxx index 10e03e1781889d23facde6e02ea9bb3ab06d08da..4d0417711de1977f29b14bcf6435fb2c91e6913a 100644 --- a/src/Cxx/Images/ImageMapper.cxx +++ b/src/Cxx/Images/ImageMapper.cxx @@ -65,15 +65,12 @@ void CreateColorImage(vtkImageData* image) { vtkNew colors; - std::array drawColor1{0, 0, 0}; - std::array drawColor2{0, 0, 0}; - auto color1 = colors->GetColor3ub("HotPink").GetData(); - auto color2 = colors->GetColor3ub("Chartreuse").GetData(); - for (auto i = 0; i < 3; ++i) - { - drawColor1[i] = color1[i]; - drawColor2[i] = color2[i]; - } + auto color1 = colors->GetColor3ub("HotPink"); + std::array drawColor1{color1.GetRed(), color1.GetGreen(), + color1.GetBlue()}; + auto color2 = colors->GetColor3ub("Chartreuse"); + std::array drawColor2{color2.GetRed(), color2.GetGreen(), + color2.GetBlue()}; unsigned int dim = 20; diff --git a/src/Cxx/InfoVis/CMakeLists.txt b/src/Cxx/InfoVis/CMakeLists.txt index 28a25881b90b8ae795990ba9118a51749aa5b5b6..2115fdb53410e5d30d2a3da2358b5519c5f05661 100644 --- a/src/Cxx/InfoVis/CMakeLists.txt +++ b/src/Cxx/InfoVis/CMakeLists.txt @@ -119,5 +119,6 @@ endif() if (BUILD_TESTING) set(KIT InfoVis) - set_tests_properties(${KIT}-XGMLReader PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=LOOSE_VALID") + # This still fails in Windows TIGHT_VALID is Ok in Linux. + set_tests_properties(${KIT}-XGMLReader PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=LEGACY_VALID") endif() diff --git a/src/Cxx/Plotting/CMakeLists.txt b/src/Cxx/Plotting/CMakeLists.txt index 85ed355af0fe3400f6a7cc6ee2b7ff5237e73501..b9eafa5fdad34c9c2830200c0c019421efb146f2 100644 --- a/src/Cxx/Plotting/CMakeLists.txt +++ b/src/Cxx/Plotting/CMakeLists.txt @@ -73,8 +73,3 @@ if (BUILD_TESTING) include(${WikiExamples_SOURCE_DIR}/CMake/ExamplesTesting.cmake) endif() - -if (BUILD_TESTING) - set(KIT Plotting) - set_tests_properties(${KIT}-CompareRandomGeneratorsCxx PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=LOOSE_VALID") -endif() diff --git a/src/Cxx/Visualization/CMakeLists.txt b/src/Cxx/Visualization/CMakeLists.txt index cd5ba7e4e201ceb2597199d4ba6beadae36bfa44..bb8b4c24a6cbb6ba2245a55df5717f994d266411 100644 --- a/src/Cxx/Visualization/CMakeLists.txt +++ b/src/Cxx/Visualization/CMakeLists.txt @@ -269,8 +269,3 @@ if (BUILD_TESTING) include(${WikiExamples_SOURCE_DIR}/CMake/ExamplesTesting.cmake) endif() - -if (BUILD_TESTING) - set(KIT Visualization) - set_tests_properties(${KIT}-Kitchen PROPERTIES ENVIRONMENT "VTK_TESTING=1;VTK_TESTING_IMAGE_COMPARE_METHOD=LOOSE_VALID") -endif() diff --git a/src/Cxx/Visualization/CloseWindow.cxx b/src/Cxx/Visualization/CloseWindow.cxx index 230c2a335bbe2498f9c81d5acbe4c606cb5727ec..8b300770e7e9f8f6bc22f12010ad80e825335e3f 100644 --- a/src/Cxx/Visualization/CloseWindow.cxx +++ b/src/Cxx/Visualization/CloseWindow.cxx @@ -51,8 +51,8 @@ int main(int, char*[]) // Render and interact. renderWindow->Render(); renderWindow->SetWindowName("First Window"); + std::cout << "Window 1 opened..." << std::endl; renderWindowInteractor->Start(); - std::cout << "Window 1 closed..." << std::endl; // Make another interactor, but use the same render window. @@ -68,7 +68,7 @@ int main(int, char*[]) renderWindowInteractor2->SetRenderWindow(renderWindow); renderWindow->Render(); renderWindow->SetWindowName("Second Window"); - + std::cout << "Window 2 opened..." << std::endl; renderWindowInteractor2->Start(); std::cout << "Window 2 closed. Exiting..." << std::endl; diff --git a/src/Testing/Baseline/Cxx/Animation/TestAnimationScene.png b/src/Testing/Baseline/Cxx/Animation/TestAnimationScene.png index b29312c8d9488ef2e7c7596b132437c1c3b3d8be..f82904fd6194fef87e15b97fe3fc8fa629a0a1d4 100644 --- a/src/Testing/Baseline/Cxx/Animation/TestAnimationScene.png +++ b/src/Testing/Baseline/Cxx/Animation/TestAnimationScene.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:726937fffe17896033557f676107e648eb9e2882ba836dbbd48d272a7958d1c5 -size 31560 +oid sha256:406050644d8b94cc70d95310c1e77720528a7b1baa70afef2a4535b2754f484a +size 31740 diff --git a/src/Testing/Baseline/Cxx/GeometricObjects/TestConvexPointSet.png b/src/Testing/Baseline/Cxx/GeometricObjects/TestConvexPointSet.png index 88ff92816e17c84d333f32c7c72735dcc55d0d52..8e119e025b894d9267f7d5c3ee1f124c360f1971 100644 --- a/src/Testing/Baseline/Cxx/GeometricObjects/TestConvexPointSet.png +++ b/src/Testing/Baseline/Cxx/GeometricObjects/TestConvexPointSet.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ec122aa87d299478acc947ebe215c2a598876a370655eefb248b0fdab96bd55 -size 18590 +oid sha256:41caeb4dc8be3ea4d9f1662d14a4ed53d6ac38b3af08bc9b0561ff769ae3e7e8 +size 39343 diff --git a/src/Testing/Baseline/Cxx/GeometricObjects/TestHexahedron.png b/src/Testing/Baseline/Cxx/GeometricObjects/TestHexahedron.png index 85d70cb1e1b64391592792c2dfd0515208c31d57..883ea3f8d9dcccd817cfb55fb260d95c956f5590 100644 --- a/src/Testing/Baseline/Cxx/GeometricObjects/TestHexahedron.png +++ b/src/Testing/Baseline/Cxx/GeometricObjects/TestHexahedron.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d4e27726598397a353df4dec3c470f329f864a620cace8ff4670394d9cd7d68 -size 4165 +oid sha256:18e980694615d01c8a68c536212869ccabd7b3cb130454f481cf30e94ea6a37c +size 3958 diff --git a/src/Testing/Baseline/Cxx/GeometricObjects/TestPoint.png b/src/Testing/Baseline/Cxx/GeometricObjects/TestPoint.png index b3abeb2169fcc3455fc303c488eefb3f60d5e106..cad6894a6a175df86db7f327015d01f87f1e9d1e 100644 --- a/src/Testing/Baseline/Cxx/GeometricObjects/TestPoint.png +++ b/src/Testing/Baseline/Cxx/GeometricObjects/TestPoint.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a098a0bd3624009015aae7ba8ef2dc5f3ab57dbe3dc64f18db8a121fd538704 -size 947 +oid sha256:9f3704a09a408169c39709958e58867db21eed0b3a6ea9e77c88f17e76ed7305 +size 937 diff --git a/src/Testing/Baseline/Cxx/IO/TestIndividualVRML.png b/src/Testing/Baseline/Cxx/IO/TestIndividualVRML.png index fda7fb0c44924add961a42439e8537215e80b4f6..36bed3fc8a94e0ac8b0d2e36ba3d181582683839 100644 --- a/src/Testing/Baseline/Cxx/IO/TestIndividualVRML.png +++ b/src/Testing/Baseline/Cxx/IO/TestIndividualVRML.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6720d2ad999b9c2b2a48bc6578ed49142facb000709bcd19bedba19cdb9f4788 -size 20986 +oid sha256:d09b716c476402ece85708224e0fd322da88cb3d63f6664117dd0b5f4012439a +size 18397 diff --git a/src/Testing/Baseline/Cxx/ImageData/TestVoxelsOnBoundary.png b/src/Testing/Baseline/Cxx/ImageData/TestVoxelsOnBoundary.png index 4b4e8658a1e7b11c363ec0b61eeca400353d3343..c0f7bb0f4324bf79c043d9610591dc3cfbc6054b 100644 --- a/src/Testing/Baseline/Cxx/ImageData/TestVoxelsOnBoundary.png +++ b/src/Testing/Baseline/Cxx/ImageData/TestVoxelsOnBoundary.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f22daad092c6e5aaa43cc606e6b4de851496967efbcf476184601684883d5fe3 -size 45926 +oid sha256:4c00a04e1b7fafa382e04d43ec302f04980864cce014aef66617cb345934acda +size 254845 diff --git a/src/Testing/Baseline/Cxx/Images/TestImageFFT.png b/src/Testing/Baseline/Cxx/Images/TestImageFFT.png index 9aff6d9e9b21d50a28a7ac4b6e29daf99cf841ef..176fe69d2c2547b0f85c9ee15a39c05bd7fcc83d 100644 --- a/src/Testing/Baseline/Cxx/Images/TestImageFFT.png +++ b/src/Testing/Baseline/Cxx/Images/TestImageFFT.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:579a466b40f7386762f68e14915a437b8223c27b20abf297bcaf0d0a4183208b -size 63417 +oid sha256:59ec88c4ba5b15dedea1b57d290716eb76cddf64b1e7f24c30a8962f1677185d +size 59620 diff --git a/src/Testing/Baseline/Cxx/Images/TestImageMapper.png b/src/Testing/Baseline/Cxx/Images/TestImageMapper.png index 7f1b649c31125ca2eaf724c92d2816eb47ffbd04..4a3bbe49bbe384c4d8d162b0976b7c69c6684f02 100644 --- a/src/Testing/Baseline/Cxx/Images/TestImageMapper.png +++ b/src/Testing/Baseline/Cxx/Images/TestImageMapper.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c873692aefd97c03cc7a1890c60dba2cc09f3ef5d7d107bc14b004ec97a76f82 -size 938 +oid sha256:602eb4c306230775fd45ec6df89d6e4fdb9717bcf332c39a04ae4d98d5c3da72 +size 951 diff --git a/src/Testing/Baseline/Cxx/Meshes/TestInterpolateFieldDataDemo.png b/src/Testing/Baseline/Cxx/Meshes/TestInterpolateFieldDataDemo.png index 39a949eec58c0c5e347546840415a918dc42b787..76602eb9b30529e36964fd7d1810ac392a57a3d8 100644 --- a/src/Testing/Baseline/Cxx/Meshes/TestInterpolateFieldDataDemo.png +++ b/src/Testing/Baseline/Cxx/Meshes/TestInterpolateFieldDataDemo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:406552b734ada03531198b8acc357753a35647d57fa33afbb42f1cf89e8458a8 -size 46041 +oid sha256:15d1b19e6fe72b4563d031f594bf192cbce4b31c950716dffebee247823ac40e +size 87699 diff --git a/src/Testing/Baseline/Cxx/Modelling/TestDelaunay3D.png b/src/Testing/Baseline/Cxx/Modelling/TestDelaunay3D.png index 0fb0e28dc8550124101dd7c35ee137866262afcf..b2e3e4f620e982f488be2debaf41218543dc5243 100644 --- a/src/Testing/Baseline/Cxx/Modelling/TestDelaunay3D.png +++ b/src/Testing/Baseline/Cxx/Modelling/TestDelaunay3D.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc0d12dc77043ffcc7d7b3b87d9bcaa10643f4a9f10c7611d0067e3100d358f5 -size 61121 +oid sha256:5ac8dd3f17c8e10ec44e55f4926a05d1d51bd1e94d8bc6e7eb4ff533583d0485 +size 61211 diff --git a/src/Testing/Baseline/Cxx/PolyData/TestEmbedPointsIntoVolume.png b/src/Testing/Baseline/Cxx/PolyData/TestEmbedPointsIntoVolume.png index 6b260fcc21251a280c827c33329481d547cdd8fe..22a21c7fce66969f157061fbf5f653142b9b0a1a 100644 --- a/src/Testing/Baseline/Cxx/PolyData/TestEmbedPointsIntoVolume.png +++ b/src/Testing/Baseline/Cxx/PolyData/TestEmbedPointsIntoVolume.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9fed24e137212eea528ffbce83aa957a2302d6dcfd61d8f5964a3832e493d88 -size 51113 +oid sha256:a00ed34f417731cde13d2e189a186f527bddb5f252cf5241ba9e9e36bacfaa51 +size 51409 diff --git a/src/Testing/Baseline/Cxx/VisualizationAlgorithms/TestMotor.png b/src/Testing/Baseline/Cxx/VisualizationAlgorithms/TestMotor.png index 2578af32c92828a1c685d49bf4b7e4ac0750d870..fe8f419a361135f931efd25878e85d2de500f51f 100644 --- a/src/Testing/Baseline/Cxx/VisualizationAlgorithms/TestMotor.png +++ b/src/Testing/Baseline/Cxx/VisualizationAlgorithms/TestMotor.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8dd035d30a0dc074ff1fc4f065484302028cbed52a89bf9f2e198039ade399f -size 95014 +oid sha256:8caf96d9f6beeb0972837efafa3df5b0657f69268a0766dc82b2da1fe181a87f +size 94630 diff --git a/src/Testing/Baseline/PythonicAPI/Animation/TestAnimationScene.png b/src/Testing/Baseline/PythonicAPI/Animation/TestAnimationScene.png index b29312c8d9488ef2e7c7596b132437c1c3b3d8be..f82904fd6194fef87e15b97fe3fc8fa629a0a1d4 100644 --- a/src/Testing/Baseline/PythonicAPI/Animation/TestAnimationScene.png +++ b/src/Testing/Baseline/PythonicAPI/Animation/TestAnimationScene.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:726937fffe17896033557f676107e648eb9e2882ba836dbbd48d272a7958d1c5 -size 31560 +oid sha256:406050644d8b94cc70d95310c1e77720528a7b1baa70afef2a4535b2754f484a +size 31740 diff --git a/src/Testing/Baseline/PythonicAPI/GeometricObjects/TestConvexPointSet.png b/src/Testing/Baseline/PythonicAPI/GeometricObjects/TestConvexPointSet.png index 88ff92816e17c84d333f32c7c72735dcc55d0d52..8e119e025b894d9267f7d5c3ee1f124c360f1971 100644 --- a/src/Testing/Baseline/PythonicAPI/GeometricObjects/TestConvexPointSet.png +++ b/src/Testing/Baseline/PythonicAPI/GeometricObjects/TestConvexPointSet.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ec122aa87d299478acc947ebe215c2a598876a370655eefb248b0fdab96bd55 -size 18590 +oid sha256:41caeb4dc8be3ea4d9f1662d14a4ed53d6ac38b3af08bc9b0561ff769ae3e7e8 +size 39343 diff --git a/src/Testing/Baseline/PythonicAPI/ImageData/TestVoxelsOnBoundary.png b/src/Testing/Baseline/PythonicAPI/ImageData/TestVoxelsOnBoundary.png index 4b4e8658a1e7b11c363ec0b61eeca400353d3343..c0f7bb0f4324bf79c043d9610591dc3cfbc6054b 100644 --- a/src/Testing/Baseline/PythonicAPI/ImageData/TestVoxelsOnBoundary.png +++ b/src/Testing/Baseline/PythonicAPI/ImageData/TestVoxelsOnBoundary.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f22daad092c6e5aaa43cc606e6b4de851496967efbcf476184601684883d5fe3 -size 45926 +oid sha256:4c00a04e1b7fafa382e04d43ec302f04980864cce014aef66617cb345934acda +size 254845 diff --git a/src/Testing/Baseline/PythonicAPI/InfoVis/TestXGMLReader.png b/src/Testing/Baseline/PythonicAPI/InfoVis/TestXGMLReader.png index 2f041ed51379a955fb0bd10115554a85b822d77b..c68633f5bd832d0f1b331bc7841497bf66d080d1 100644 --- a/src/Testing/Baseline/PythonicAPI/InfoVis/TestXGMLReader.png +++ b/src/Testing/Baseline/PythonicAPI/InfoVis/TestXGMLReader.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4deb5b0707b8922b54bdc61acb9f1279f001f531aa6512e1e0b108970c03c815 -size 18088 +oid sha256:4ab0fdb4d7a80a0908597fa0c5e3ba9194d6df9dd8c6d4cbf197f921b5febdd4 +size 176104 diff --git a/src/Testing/Data/utah_teapot.obj b/src/Testing/Data/utah_teapot.obj new file mode 100644 index 0000000000000000000000000000000000000000..efca151da0978d301b6dc0b2b94ea473f411ae02 --- /dev/null +++ b/src/Testing/Data/utah_teapot.obj @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bd6f962ad4fcf406da8ca2cfc3cc123934595074987298df0db0a74781d4a3 +size 2591232 diff --git a/src/Testing/Data/utah_teapot.wrl b/src/Testing/Data/utah_teapot.wrl new file mode 100644 index 0000000000000000000000000000000000000000..64d6153923daf7d1998ff0ed8cfa8cf90a611895 --- /dev/null +++ b/src/Testing/Data/utah_teapot.wrl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f48250c84cdaaf8802de06f1c39cff4f77b2a26925bd9661bd462d8c8c0c580 +size 3083922