Index: cad/opencascade/Makefile =================================================================== --- cad/opencascade/Makefile +++ cad/opencascade/Makefile @@ -1,6 +1,5 @@ PORTNAME= opencascade -PORTVERSION= 7.6.0 -PORTREVISION= 8 +DISTVERSION= 7.7.0-beta CATEGORIES= cad science MASTER_SITES= LOCAL/thierry @@ -19,6 +18,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libexpat.so:textproc/expat2 \ + libdraco.so:archivers/draco \ libpng16.so:graphics/png \ libvtksys-${VTKVER}.so:math/vtk${VTKVER:R} RUN_DEPENDS= bash:shells/bash @@ -61,7 +61,10 @@ -DUSE_FREETYPE:BOOL=ON \ -DUSE_TBB:BOOL=OFF \ -DUSE_RAPIDJSON:BOOL=ON \ + -DUSE_DRACO:BOOL=ON \ -DUSE_VTK:BOOL=ON \ + -D3RDPARTY_DRACO_LIBRARY_DIR:PATH=${LOCALBASE}/lib \ + -D3RDPARTY_DRACO_INCLUDE_DIR:PATH=${LOCALBASE}/include/draco \ -D3RDPARTY_VTK_INCLUDE_DIR:PATH=${LOCALBASE}/include/vtk-${VTKVER} CONFIGURE_ENV+= DESTDIR=${STAGEDIR} @@ -82,7 +85,7 @@ LOCCROOT= OpenCAS OCCROOT= ${PREFIX}/${LOCCROOT} PLIST_SUB= OCCROOT="${LOCCROOT}" BITS=${BITS} CC=${CHOSEN_COMPILER_TYPE} \ - VE=${PORTVERSION:R:R} VER=${PORTVERSION} + VE=${PORTVERSION:R:R} VER=${DISTVERSION:C/-beta//} FFMPEG_CMAKE_ON= -DUSE_FFMPEG:BOOL=ON FFMPEG_CMAKE_OFF= -DUSE_FFMPEG:BOOL=OFF @@ -120,7 +123,7 @@ VIS_USE= GL=glesv2 DOXYGEN_IMPLIES= DOCS -DOXYGEN_USE= TEX=latex:build +DOXYGEN_USE= TEX=latex:build DOXYGEN_BUILD_DEPENDS= bash:shells/bash \ doxygen:devel/doxygen \ dot:graphics/graphviz \ @@ -160,7 +163,7 @@ (cd ${WRKSRC} && ./gendoc -overview) post-install: - ${MV} ${STAGEDIR}${OCCROOT}/bin/DRAWEXE-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/DRAWEXE + ${MV} ${STAGEDIR}${OCCROOT}/bin/DRAWEXE-${DISTVERSION:C/-beta//} ${STAGEDIR}${PREFIX}/bin/DRAWEXE (cd ${STAGEDIR}${PREFIX}/bin && \ ${LN} -sf DRAWEXE ${STAGEDIR}${OCCROOT}/bin/DRAWEXE) Index: cad/opencascade/distinfo =================================================================== --- cad/opencascade/distinfo +++ cad/opencascade/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1635964606 -SHA256 (opencascade-7.6.0.tgz) = 8dd81ee7b37f38bf930e0c067aa10f027310f3ab896f2925b32a2a2c5e273401 -SIZE (opencascade-7.6.0.tgz) = 230101903 +TIMESTAMP = 1664821355 +SHA256 (opencascade-7.7.0-beta.tgz) = aa5ee6acc478c6fcf4e1cd00c91330d964fd3fe1a42fe71dcc8c1b610bd4b6b0 +SIZE (opencascade-7.7.0-beta.tgz) = 911544320 Index: cad/opencascade/files/patch-CMakeLists.txt =================================================================== --- cad/opencascade/files/patch-CMakeLists.txt +++ cad/opencascade/files/patch-CMakeLists.txt @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2021-10-30 11:13:37 UTC +--- CMakeLists.txt.orig 2022-09-30 11:53:39 UTC +++ CMakeLists.txt -@@ -963,7 +963,7 @@ if (${DRAWEXE_INDEX} GREATER -1) +@@ -1005,7 +1005,7 @@ if (${DRAWEXE_INDEX} GREATER -1) PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE) else() install (FILES "${CMAKE_SOURCE_DIR}/adm/templates/draw.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}" @@ -9,7 +9,7 @@ endif() # copy draw script to CMake binary folder -@@ -979,7 +979,7 @@ else() +@@ -1021,7 +1021,7 @@ endif() endif() # change custom.bat/sh @@ -18,18 +18,12 @@ file (READ "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" CUSTOM_CONTENT) set (CUSTOM_CONTENT "${CUSTOM_CONTENT} ${ADDITIONAL_CUSTOM_CONTENT}") -@@ -1229,7 +1229,13 @@ foreach (OCCT_CONFIGURATION ${CMAKE_CONFIGURATION_TYPE +@@ -1265,7 +1265,7 @@ install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONF endforeach() # install OpenCASCADE config file with compile definitions and C/C++ flags ONLY for current configuration install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWER)") --install (CODE "configure_file(\"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" \"${INSTALL_DIR}/${INSTALL_DIR_CMAKE}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" COPYONLY)") -+install(CODE " -+ configure_file( -+ \"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" -+ \"\$ENV{DESTDIR}/${INSTALL_DIR_CMAKE}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" -+ COPYONLY) -+") -+ +-install (CODE "file(INSTALL FILES \"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" DESTINATION \"${INSTALL_DIR}/${INSTALL_DIR_CMAKE}/\" TYPE FILE)") ++install (CODE "file(INSTALL FILES \"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" DESTINATION \"${INSTALL_DIR_CMAKE}/\" TYPE FILE)") foreach (OCCT_MODULE ${OCCT_MODULES}) if (BUILD_MODULE_${OCCT_MODULE}) Index: cad/opencascade/files/patch-adm_cmake_occt__macros.cmake =================================================================== --- cad/opencascade/files/patch-adm_cmake_occt__macros.cmake +++ cad/opencascade/files/patch-adm_cmake_occt__macros.cmake @@ -1,4 +1,4 @@ ---- adm/cmake/occt_macros.cmake.orig 2021-10-30 11:13:37 UTC +--- adm/cmake/occt_macros.cmake.orig 2022-09-30 11:53:39 UTC +++ adm/cmake/occt_macros.cmake @@ -47,7 +47,7 @@ macro (OCCT_MAKE_OS_WITH_BITNESS) elseif(APPLE) @@ -18,12 +18,12 @@ string(TIMESTAMP CURRENT_TIME "%H:%M:%S") message (STATUS "Info: \(${CURRENT_TIME}\) Checking headers in inc folder...") -@@ -592,12 +592,12 @@ macro (OCCT_UPDATE_TARGET_FILE) - "cmake_policy(PUSH) - cmake_policy(SET CMP0007 NEW) - string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWERCASE) +@@ -590,12 +590,12 @@ macro (OCCT_UPDATE_TARGET_FILE) + + install (CODE + "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWERCASE) - file (GLOB ALL_OCCT_TARGET_FILES \"${INSTALL_DIR}/${INSTALL_DIR_CMAKE}/OpenCASCADE*Targets-\${CMAKE_INSTALL_CONFIG_NAME_LOWERCASE}.cmake\") -+ file (GLOB ALL_OCCT_TARGET_FILES \"$ENV{DESTDIR}${INSTALL_DIR_CMAKE}/OpenCASCADE*Targets-\${CMAKE_INSTALL_CONFIG_NAME_LOWERCASE}.cmake\") ++ file (GLOB ALL_OCCT_TARGET_FILES \"$ENV{DESTDIR}/${INSTALL_DIR_CMAKE}/OpenCASCADE*Targets-\${CMAKE_INSTALL_CONFIG_NAME_LOWERCASE}.cmake\") foreach(TARGET_FILENAME \${ALL_OCCT_TARGET_FILES}) file (STRINGS \"\${TARGET_FILENAME}\" TARGET_FILE_CONTENT) file (REMOVE \"\${TARGET_FILENAME}\") @@ -32,4 +32,4 @@ + string (REGEX REPLACE \"[\\\\]?[\\\$]{OCCT_INSTALL_BIN_LETTER}\" \"${OCCT_INSTALL_BIN_LETTER}\" line \"\${line}\") file (APPEND \"\${TARGET_FILENAME}\" \"\${line}\\n\") endforeach() - endforeach() + endforeach()") Index: cad/opencascade/files/patch-inc_Standard__Time.hxx =================================================================== --- cad/opencascade/files/patch-inc_Standard__Time.hxx +++ /dev/null @@ -1,19 +0,0 @@ ---- inc/Standard_Time.hxx.orig 2017-08-30 13:28:31 UTC -+++ inc/Standard_Time.hxx -@@ -26,11 +26,11 @@ - // ------------------------------------------------------------------ - // IsEqual : Returns Standard_True if two time values are equal - // ------------------------------------------------------------------ --inline Standard_Boolean IsEqual (const Standard_Time theOne, -- const Standard_Time theTwo) --{ -- return theOne == theTwo; --} -+//inline Standard_Boolean IsEqual (const Standard_Time theOne, -+// const Standard_Time theTwo) -+//{ -+// return theOne == theTwo; -+//} - - #endif - Index: cad/opencascade/files/patch-src_STEPConstruct_STEPConstruct__AP203Context.cxx =================================================================== --- cad/opencascade/files/patch-src_STEPConstruct_STEPConstruct__AP203Context.cxx +++ cad/opencascade/files/patch-src_STEPConstruct_STEPConstruct__AP203Context.cxx @@ -1,6 +1,6 @@ ---- src/STEPConstruct/STEPConstruct_AP203Context.cxx.orig 2017-08-30 13:28:30 UTC +--- src/STEPConstruct/STEPConstruct_AP203Context.cxx.orig 2022-09-30 11:53:57 UTC +++ src/STEPConstruct/STEPConstruct_AP203Context.cxx -@@ -123,7 +123,15 @@ Handle(StepBasic_DateAndTime) STEPConstr +@@ -121,7 +121,15 @@ Handle(StepBasic_DateAndTime) STEPConstruct_AP203Conte long shift = 0; _get_timezone (&shift); #else Index: cad/opencascade/files/patch-src_Standard_Standard__CString.cxx =================================================================== --- cad/opencascade/files/patch-src_Standard_Standard__CString.cxx +++ cad/opencascade/files/patch-src_Standard_Standard__CString.cxx @@ -1,6 +1,6 @@ ---- src/Standard/Standard_CString.cxx.orig 2021-10-30 11:13:58 UTC +--- src/Standard/Standard_CString.cxx.orig 2022-09-30 11:54:05 UTC +++ src/Standard/Standard_CString.cxx -@@ -82,7 +82,7 @@ Standard_Integer HashCodes (const Standard_CString the +@@ -80,7 +80,7 @@ Standard_Integer HashCodes (const Standard_CString the // strtod, strtol, strtoll functions. For other system with locale-depended // implementations problems may appear if "C" locale is not set explicitly. #if !defined(__ANDROID__) && !defined(__QNX__) && !defined(__MINGW32__) Index: cad/opencascade/files/patch-src_Standard_Standard__Time.hxx =================================================================== --- cad/opencascade/files/patch-src_Standard_Standard__Time.hxx +++ /dev/null @@ -1,19 +0,0 @@ ---- src/Standard/Standard_Time.hxx.orig 2017-08-30 13:28:31 UTC -+++ src/Standard/Standard_Time.hxx -@@ -26,11 +26,11 @@ - // ------------------------------------------------------------------ - // IsEqual : Returns Standard_True if two time values are equal - // ------------------------------------------------------------------ --inline Standard_Boolean IsEqual (const Standard_Time theOne, -- const Standard_Time theTwo) --{ -- return theOne == theTwo; --} -+//inline Standard_Boolean IsEqual (const Standard_Time theOne, -+// const Standard_Time theTwo) -+//{ -+// return theOne == theTwo; -+//} - - #endif - Index: cad/opencascade/pkg-plist =================================================================== --- cad/opencascade/pkg-plist +++ cad/opencascade/pkg-plist @@ -1,4 +1,6 @@ %%OCCROOT%%/bin/DRAWEXE +%%OCCROOT%%/bin/ExpToCasExe +%%OCCROOT%%/bin/ExpToCasExe-%%VER%% %%OCCROOT%%/bin/custom.sh %%OCCROOT%%/bin/custom_%%CC%%_%%BITS%%.sh %%OCCROOT%%/bin/draw.sh @@ -111,9 +113,9 @@ %%OCCROOT%%/resources/SHMessage/SHMessage_SHAPE_us.pxx %%OCCROOT%%/resources/Shaders/Declarations.glsl %%OCCROOT%%/resources/Shaders/DeclarationsImpl.glsl -%%OCCROOT%%/resources/Shaders/DirectionalLightShadow.glsl %%OCCROOT%%/resources/Shaders/Display.fs %%OCCROOT%%/resources/Shaders/FILES +%%OCCROOT%%/resources/Shaders/LightShadow.glsl %%OCCROOT%%/resources/Shaders/PBRCookTorrance.glsl %%OCCROOT%%/resources/Shaders/PBRDirectionalLight.glsl %%OCCROOT%%/resources/Shaders/PBRDistribution.glsl @@ -137,8 +139,8 @@ %%OCCROOT%%/resources/Shaders/RaytraceSmooth.fs %%OCCROOT%%/resources/Shaders/Shaders_DeclarationsImpl_glsl.pxx %%OCCROOT%%/resources/Shaders/Shaders_Declarations_glsl.pxx -%%OCCROOT%%/resources/Shaders/Shaders_DirectionalLightShadow_glsl.pxx %%OCCROOT%%/resources/Shaders/Shaders_Display_fs.pxx +%%OCCROOT%%/resources/Shaders/Shaders_LightShadow_glsl.pxx %%OCCROOT%%/resources/Shaders/Shaders_PBRCookTorrance_glsl.pxx %%OCCROOT%%/resources/Shaders/Shaders_PBRDirectionalLight_glsl.pxx %%OCCROOT%%/resources/Shaders/Shaders_PBRDistribution_glsl.pxx @@ -158,7 +160,9 @@ %%OCCROOT%%/resources/Shaders/Shaders_RaytraceBase_vs.pxx %%OCCROOT%%/resources/Shaders/Shaders_RaytraceRender_fs.pxx %%OCCROOT%%/resources/Shaders/Shaders_RaytraceSmooth_fs.pxx +%%OCCROOT%%/resources/Shaders/Shaders_SkydomBackground_fs.pxx %%OCCROOT%%/resources/Shaders/Shaders_TangentSpaceNormal_glsl.pxx +%%OCCROOT%%/resources/Shaders/SkydomBackground.fs %%OCCROOT%%/resources/Shaders/TangentSpaceNormal.glsl %%OCCROOT%%/resources/StdResource/FILES %%OCCROOT%%/resources/StdResource/MigrationSheet.txt @@ -208,6 +212,7 @@ %%OCCROOT%%/resources/XRResources/occtvr_bindings_holographic_hmd.json %%OCCROOT%%/resources/XRResources/occtvr_bindings_index_hmd.json %%OCCROOT%%/resources/XRResources/occtvr_bindings_rift.json +%%OCCROOT%%/resources/XRResources/occtvr_bindings_touch.json %%OCCROOT%%/resources/XRResources/occtvr_bindings_vive.json %%OCCROOT%%/resources/XRResources/occtvr_bindings_vive_controller.json %%OCCROOT%%/resources/XRResources/occtvr_bindings_vive_cosmos.json @@ -256,8 +261,8 @@ %%OCCROOT%%/samples/tcl/spheres.tcl %%OCCROOT%%/samples/tcl/vis_pbr_spheres.tcl %%OCCROOT%%/samples/tcl/xde.tcl -%%PORTDOCS%%%%OCCROOT%%/%%DOCSDIR%%/LICENSE_LGPL_21.txt -%%PORTDOCS%%%%OCCROOT%%/%%DOCSDIR%%/OCCT_LGPL_EXCEPTION.txt +%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/LICENSE_LGPL_21.txt +%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/OCCT_LGPL_EXCEPTION.txt %%OCCROOT%%/tests/blend/begin %%OCCROOT%%/tests/blend/bfuseblend/A1 %%OCCROOT%%/tests/blend/bfuseblend/A2 @@ -5119,7 +5124,9 @@ %%OCCROOT%%/tests/bugs/fclasses/bug28829 %%OCCROOT%%/tests/bugs/fclasses/bug29064 %%OCCROOT%%/tests/bugs/fclasses/bug29355 +%%OCCROOT%%/tests/bugs/fclasses/bug29406 %%OCCROOT%%/tests/bugs/fclasses/bug29925 +%%OCCROOT%%/tests/bugs/fclasses/bug30492 %%OCCROOT%%/tests/bugs/fclasses/bug30536 %%OCCROOT%%/tests/bugs/fclasses/bug30762 %%OCCROOT%%/tests/bugs/fclasses/bug30775 @@ -5134,6 +5141,8 @@ %%OCCROOT%%/tests/bugs/fclasses/bug31381 %%OCCROOT%%/tests/bugs/fclasses/bug31697 %%OCCROOT%%/tests/bugs/fclasses/bug32601 +%%OCCROOT%%/tests/bugs/fclasses/bug32960 +%%OCCROOT%%/tests/bugs/fclasses/bug33048 %%OCCROOT%%/tests/bugs/fclasses/bug6143 %%OCCROOT%%/tests/bugs/fclasses/bug63 %%OCCROOT%%/tests/bugs/fclasses/bug670 @@ -5277,7 +5286,9 @@ %%OCCROOT%%/tests/bugs/heal/bug28595 %%OCCROOT%%/tests/bugs/heal/bug28768 %%OCCROOT%%/tests/bugs/heal/bug28995 -%%OCCROOT%%/tests/bugs/heal/bug29382 +%%OCCROOT%%/tests/bugs/heal/bug29382_1 +%%OCCROOT%%/tests/bugs/heal/bug29382_2 +%%OCCROOT%%/tests/bugs/heal/bug29382_3 %%OCCROOT%%/tests/bugs/heal/bug29502 %%OCCROOT%%/tests/bugs/heal/bug29504_1 %%OCCROOT%%/tests/bugs/heal/bug29504_2 @@ -5316,7 +5327,12 @@ %%OCCROOT%%/tests/bugs/heal/bug32581 %%OCCROOT%%/tests/bugs/heal/bug32619 %%OCCROOT%%/tests/bugs/heal/bug32623 +%%OCCROOT%%/tests/bugs/heal/bug32719 +%%OCCROOT%%/tests/bugs/heal/bug32814_1 +%%OCCROOT%%/tests/bugs/heal/bug32814_2 %%OCCROOT%%/tests/bugs/heal/bug329 +%%OCCROOT%%/tests/bugs/heal/bug33006 +%%OCCROOT%%/tests/bugs/heal/bug33028 %%OCCROOT%%/tests/bugs/heal/bug482 %%OCCROOT%%/tests/bugs/heal/bug518 %%OCCROOT%%/tests/bugs/heal/bug7570 @@ -5395,6 +5411,7 @@ %%OCCROOT%%/tests/bugs/iges/bug25843_iges %%OCCROOT%%/tests/bugs/iges/bug26047 %%OCCROOT%%/tests/bugs/iges/bug26138 +%%OCCROOT%%/tests/bugs/iges/bug26174 %%OCCROOT%%/tests/bugs/iges/bug26419_1 %%OCCROOT%%/tests/bugs/iges/bug26419_2 %%OCCROOT%%/tests/bugs/iges/bug26573 @@ -5418,6 +5435,8 @@ %%OCCROOT%%/tests/bugs/iges/bug28694_8 %%OCCROOT%%/tests/bugs/iges/bug28694_9 %%OCCROOT%%/tests/bugs/iges/bug29391 +%%OCCROOT%%/tests/bugs/iges/bug29435 +%%OCCROOT%%/tests/bugs/iges/bug29435_1 %%OCCROOT%%/tests/bugs/iges/bug29526 %%OCCROOT%%/tests/bugs/iges/bug30356 %%OCCROOT%%/tests/bugs/iges/bug30544 @@ -5632,6 +5651,7 @@ %%OCCROOT%%/tests/bugs/mesh/bug28719 %%OCCROOT%%/tests/bugs/mesh/bug29149 %%OCCROOT%%/tests/bugs/mesh/bug29205 +%%OCCROOT%%/tests/bugs/mesh/bug29641 %%OCCROOT%%/tests/bugs/mesh/bug29685 %%OCCROOT%%/tests/bugs/mesh/bug29715 %%OCCROOT%%/tests/bugs/mesh/bug29751 @@ -5642,6 +5662,7 @@ %%OCCROOT%%/tests/bugs/mesh/bug30149 %%OCCROOT%%/tests/bugs/mesh/bug30167 %%OCCROOT%%/tests/bugs/mesh/bug30234 +%%OCCROOT%%/tests/bugs/mesh/bug30442 %%OCCROOT%%/tests/bugs/mesh/bug30780 %%OCCROOT%%/tests/bugs/mesh/bug30785 %%OCCROOT%%/tests/bugs/mesh/bug31125 @@ -5654,9 +5675,22 @@ %%OCCROOT%%/tests/bugs/mesh/bug31251 %%OCCROOT%%/tests/bugs/mesh/bug31258 %%OCCROOT%%/tests/bugs/mesh/bug31378 +%%OCCROOT%%/tests/bugs/mesh/bug31449_1 +%%OCCROOT%%/tests/bugs/mesh/bug31449_2 +%%OCCROOT%%/tests/bugs/mesh/bug31449_3 %%OCCROOT%%/tests/bugs/mesh/bug31461 +%%OCCROOT%%/tests/bugs/mesh/bug31853 +%%OCCROOT%%/tests/bugs/mesh/bug32241 +%%OCCROOT%%/tests/bugs/mesh/bug32422 %%OCCROOT%%/tests/bugs/mesh/bug32424 %%OCCROOT%%/tests/bugs/mesh/bug32471 +%%OCCROOT%%/tests/bugs/mesh/bug32692_1 +%%OCCROOT%%/tests/bugs/mesh/bug32692_2 +%%OCCROOT%%/tests/bugs/mesh/bug32692_3 +%%OCCROOT%%/tests/bugs/mesh/bug32767 +%%OCCROOT%%/tests/bugs/mesh/bug32982_1 +%%OCCROOT%%/tests/bugs/mesh/bug32982_2 +%%OCCROOT%%/tests/bugs/mesh/bug33060 %%OCCROOT%%/tests/bugs/mesh/parse.rules %%OCCROOT%%/tests/bugs/modalg_1/begin %%OCCROOT%%/tests/bugs/modalg_1/buc60409_1 @@ -6677,6 +6711,8 @@ %%OCCROOT%%/tests/bugs/modalg_5/bug23708 %%OCCROOT%%/tests/bugs/modalg_5/bug23782 %%OCCROOT%%/tests/bugs/modalg_5/bug23785 +%%OCCROOT%%/tests/bugs/modalg_5/bug23820_1 +%%OCCROOT%%/tests/bugs/modalg_5/bug23820_2 %%OCCROOT%%/tests/bugs/modalg_5/bug23823 %%OCCROOT%%/tests/bugs/modalg_5/bug23824_1 %%OCCROOT%%/tests/bugs/modalg_5/bug23824_2 @@ -6834,6 +6870,7 @@ %%OCCROOT%%/tests/bugs/modalg_5/bug24654 %%OCCROOT%%/tests/bugs/modalg_5/bug24655 %%OCCROOT%%/tests/bugs/modalg_5/bug24656 +%%OCCROOT%%/tests/bugs/modalg_5/bug24657 %%OCCROOT%%/tests/bugs/modalg_5/bug24667 %%OCCROOT%%/tests/bugs/modalg_5/bug24684 %%OCCROOT%%/tests/bugs/modalg_5/bug24706 @@ -7599,6 +7636,7 @@ %%OCCROOT%%/tests/bugs/modalg_6/bug28782 %%OCCROOT%%/tests/bugs/modalg_6/bug28795 %%OCCROOT%%/tests/bugs/modalg_6/bug31047 +%%OCCROOT%%/tests/bugs/modalg_6/bug32876 %%OCCROOT%%/tests/bugs/modalg_6/bug6768 %%OCCROOT%%/tests/bugs/modalg_6/bug7093 %%OCCROOT%%/tests/bugs/modalg_6/bug8040 @@ -7663,6 +7701,7 @@ %%OCCROOT%%/tests/bugs/modalg_7/bug25082_2 %%OCCROOT%%/tests/bugs/modalg_7/bug25104 %%OCCROOT%%/tests/bugs/modalg_7/bug25206 +%%OCCROOT%%/tests/bugs/modalg_7/bug25309 %%OCCROOT%%/tests/bugs/modalg_7/bug25385 %%OCCROOT%%/tests/bugs/modalg_7/bug25395_1 %%OCCROOT%%/tests/bugs/modalg_7/bug25395_2 @@ -7970,6 +8009,7 @@ %%OCCROOT%%/tests/bugs/modalg_7/bug29968 %%OCCROOT%%/tests/bugs/modalg_7/bug29973_1 %%OCCROOT%%/tests/bugs/modalg_7/bug29973_2 +%%OCCROOT%%/tests/bugs/modalg_7/bug30054 %%OCCROOT%%/tests/bugs/modalg_7/bug30090 %%OCCROOT%%/tests/bugs/modalg_7/bug30092 %%OCCROOT%%/tests/bugs/modalg_7/bug30140 @@ -8010,6 +8050,7 @@ %%OCCROOT%%/tests/bugs/modalg_7/bug30395 %%OCCROOT%%/tests/bugs/modalg_7/bug30396_1 %%OCCROOT%%/tests/bugs/modalg_7/bug30396_2 +%%OCCROOT%%/tests/bugs/modalg_7/bug30398 %%OCCROOT%%/tests/bugs/modalg_7/bug30433 %%OCCROOT%%/tests/bugs/modalg_7/bug30490 %%OCCROOT%%/tests/bugs/modalg_7/bug30522 @@ -8100,6 +8141,7 @@ %%OCCROOT%%/tests/bugs/modalg_7/bug31260 %%OCCROOT%%/tests/bugs/modalg_7/bug31294 %%OCCROOT%%/tests/bugs/modalg_7/bug31306 +%%OCCROOT%%/tests/bugs/modalg_7/bug31361 %%OCCROOT%%/tests/bugs/modalg_7/bug31404 %%OCCROOT%%/tests/bugs/modalg_7/bug31407_1 %%OCCROOT%%/tests/bugs/modalg_7/bug31407_2 @@ -8143,6 +8185,7 @@ %%OCCROOT%%/tests/bugs/modalg_7/bug31913 %%OCCROOT%%/tests/bugs/modalg_7/bug31974 %%OCCROOT%%/tests/bugs/modalg_7/bug31984 +%%OCCROOT%%/tests/bugs/modalg_7/bug32066 %%OCCROOT%%/tests/bugs/modalg_7/bug32106 %%OCCROOT%%/tests/bugs/modalg_7/bug32108 %%OCCROOT%%/tests/bugs/modalg_7/bug32136 @@ -8151,15 +8194,60 @@ %%OCCROOT%%/tests/bugs/modalg_7/bug32291 %%OCCROOT%%/tests/bugs/modalg_7/bug32330 %%OCCROOT%%/tests/bugs/modalg_7/bug32444 +%%OCCROOT%%/tests/bugs/modalg_7/bug32445 +%%OCCROOT%%/tests/bugs/modalg_7/bug32446 +%%OCCROOT%%/tests/bugs/modalg_7/bug32447_1 +%%OCCROOT%%/tests/bugs/modalg_7/bug32447_2 +%%OCCROOT%%/tests/bugs/modalg_7/bug32447_3 +%%OCCROOT%%/tests/bugs/modalg_7/bug32447_4 %%OCCROOT%%/tests/bugs/modalg_7/bug32470 %%OCCROOT%%/tests/bugs/modalg_7/bug32502 %%OCCROOT%%/tests/bugs/modalg_7/bug32569 %%OCCROOT%%/tests/bugs/modalg_7/bug32578 +%%OCCROOT%%/tests/bugs/modalg_7/bug32644 +%%OCCROOT%%/tests/bugs/modalg_7/bug32717 +%%OCCROOT%%/tests/bugs/modalg_7/bug32744 +%%OCCROOT%%/tests/bugs/modalg_7/bug32863 +%%OCCROOT%%/tests/bugs/modalg_7/bug32874_1 +%%OCCROOT%%/tests/bugs/modalg_7/bug32874_2 +%%OCCROOT%%/tests/bugs/modalg_7/bug32874_3 +%%OCCROOT%%/tests/bugs/modalg_7/bug32874_4 +%%OCCROOT%%/tests/bugs/modalg_7/bug32874_5 +%%OCCROOT%%/tests/bugs/modalg_7/bug32877 %%OCCROOT%%/tests/bugs/modalg_7/bug5081_1 %%OCCROOT%%/tests/bugs/modalg_7/bug5081_2 %%OCCROOT%%/tests/bugs/modalg_7/bug5582 %%OCCROOT%%/tests/bugs/modalg_7/bug83 %%OCCROOT%%/tests/bugs/modalg_7/optimal_bndbox_exception +%%OCCROOT%%/tests/bugs/modalg_8/bug30160 +%%OCCROOT%%/tests/bugs/modalg_8/bug30955 +%%OCCROOT%%/tests/bugs/modalg_8/bug31479_1 +%%OCCROOT%%/tests/bugs/modalg_8/bug31479_2 +%%OCCROOT%%/tests/bugs/modalg_8/bug31992 +%%OCCROOT%%/tests/bugs/modalg_8/bug32214_1 +%%OCCROOT%%/tests/bugs/modalg_8/bug32214_2 +%%OCCROOT%%/tests/bugs/modalg_8/bug32214_3 +%%OCCROOT%%/tests/bugs/modalg_8/bug32214_4 +%%OCCROOT%%/tests/bugs/modalg_8/bug32214_5 +%%OCCROOT%%/tests/bugs/modalg_8/bug32214_6 +%%OCCROOT%%/tests/bugs/modalg_8/bug32716_1 +%%OCCROOT%%/tests/bugs/modalg_8/bug32716_2 +%%OCCROOT%%/tests/bugs/modalg_8/bug32716_3 +%%OCCROOT%%/tests/bugs/modalg_8/bug32716_4 +%%OCCROOT%%/tests/bugs/modalg_8/bug32721 +%%OCCROOT%%/tests/bugs/modalg_8/bug32859 +%%OCCROOT%%/tests/bugs/modalg_8/bug32864 +%%OCCROOT%%/tests/bugs/modalg_8/bug32915 +%%OCCROOT%%/tests/bugs/modalg_8/bug32929 +%%OCCROOT%%/tests/bugs/modalg_8/bug32930 +%%OCCROOT%%/tests/bugs/modalg_8/bug32931 +%%OCCROOT%%/tests/bugs/modalg_8/bug32942 +%%OCCROOT%%/tests/bugs/modalg_8/bug32943 +%%OCCROOT%%/tests/bugs/modalg_8/bug32944 +%%OCCROOT%%/tests/bugs/modalg_8/bug32945 +%%OCCROOT%%/tests/bugs/modalg_8/bug32973 +%%OCCROOT%%/tests/bugs/modalg_8/bug33080 +%%OCCROOT%%/tests/bugs/modalg_8/bug33104 %%OCCROOT%%/tests/bugs/moddata_1/begin %%OCCROOT%%/tests/bugs/moddata_1/buc60637 %%OCCROOT%%/tests/bugs/moddata_1/buc60652_1 @@ -8649,13 +8737,16 @@ %%OCCROOT%%/tests/bugs/moddata_3/bug28196 %%OCCROOT%%/tests/bugs/moddata_3/bug28204 %%OCCROOT%%/tests/bugs/moddata_3/bug28230 +%%OCCROOT%%/tests/bugs/moddata_3/bug28866 %%OCCROOT%%/tests/bugs/moddata_3/bug29102 %%OCCROOT%%/tests/bugs/moddata_3/bug29662 %%OCCROOT%%/tests/bugs/moddata_3/bug29723 +%%OCCROOT%%/tests/bugs/moddata_3/bug29745 %%OCCROOT%%/tests/bugs/moddata_3/bug29827 %%OCCROOT%%/tests/bugs/moddata_3/bug30 %%OCCROOT%%/tests/bugs/moddata_3/bug30046 %%OCCROOT%%/tests/bugs/moddata_3/bug30133 +%%OCCROOT%%/tests/bugs/moddata_3/bug30272 %%OCCROOT%%/tests/bugs/moddata_3/bug30342_1 %%OCCROOT%%/tests/bugs/moddata_3/bug30342_2 %%OCCROOT%%/tests/bugs/moddata_3/bug30422 @@ -8671,6 +8762,7 @@ %%OCCROOT%%/tests/bugs/moddata_3/bug31136_5 %%OCCROOT%%/tests/bugs/moddata_3/bug31402_1 %%OCCROOT%%/tests/bugs/moddata_3/bug31402_2 +%%OCCROOT%%/tests/bugs/moddata_3/bug31437 %%OCCROOT%%/tests/bugs/moddata_3/bug31587_1 %%OCCROOT%%/tests/bugs/moddata_3/bug31587_2 %%OCCROOT%%/tests/bugs/moddata_3/bug31587_3 @@ -8679,12 +8771,17 @@ %%OCCROOT%%/tests/bugs/moddata_3/bug31587_6 %%OCCROOT%%/tests/bugs/moddata_3/bug31587_7 %%OCCROOT%%/tests/bugs/moddata_3/bug31587_8 +%%OCCROOT%%/tests/bugs/moddata_3/bug31661_1 +%%OCCROOT%%/tests/bugs/moddata_3/bug31661_2 %%OCCROOT%%/tests/bugs/moddata_3/bug31946 %%OCCROOT%%/tests/bugs/moddata_3/bug31995 %%OCCROOT%%/tests/bugs/moddata_3/bug32 %%OCCROOT%%/tests/bugs/moddata_3/bug32041 %%OCCROOT%%/tests/bugs/moddata_3/bug32058 %%OCCROOT%%/tests/bugs/moddata_3/bug32557 +%%OCCROOT%%/tests/bugs/moddata_3/bug32842 +%%OCCROOT%%/tests/bugs/moddata_3/bug33009 +%%OCCROOT%%/tests/bugs/moddata_3/bug33049 %%OCCROOT%%/tests/bugs/moddata_3/bug5145 %%OCCROOT%%/tests/bugs/moddata_3/bug599 %%OCCROOT%%/tests/bugs/parse.rules @@ -8788,6 +8885,7 @@ %%OCCROOT%%/tests/bugs/step/bug29233 %%OCCROOT%%/tests/bugs/step/bug29240 %%OCCROOT%%/tests/bugs/step/bug29403 +%%OCCROOT%%/tests/bugs/step/bug29415 %%OCCROOT%%/tests/bugs/step/bug29478 %%OCCROOT%%/tests/bugs/step/bug29564 %%OCCROOT%%/tests/bugs/step/bug29780 @@ -8848,10 +8946,20 @@ %%OCCROOT%%/tests/bugs/step/bug32049 %%OCCROOT%%/tests/bugs/step/bug32049_1 %%OCCROOT%%/tests/bugs/step/bug32087 +%%OCCROOT%%/tests/bugs/step/bug32239 %%OCCROOT%%/tests/bugs/step/bug32264 %%OCCROOT%%/tests/bugs/step/bug32310 %%OCCROOT%%/tests/bugs/step/bug32556 %%OCCROOT%%/tests/bugs/step/bug32596 +%%OCCROOT%%/tests/bugs/step/bug32679 +%%OCCROOT%%/tests/bugs/step/bug32731 +%%OCCROOT%%/tests/bugs/step/bug32817_1 +%%OCCROOT%%/tests/bugs/step/bug32817_2 +%%OCCROOT%%/tests/bugs/step/bug32817_3 +%%OCCROOT%%/tests/bugs/step/bug32914 +%%OCCROOT%%/tests/bugs/step/bug32922 +%%OCCROOT%%/tests/bugs/step/bug33053 +%%OCCROOT%%/tests/bugs/step/bug33095 %%OCCROOT%%/tests/bugs/step/bug3397 %%OCCROOT%%/tests/bugs/step/bug348_1 %%OCCROOT%%/tests/bugs/step/bug348_2 @@ -8896,6 +9004,7 @@ %%OCCROOT%%/tests/bugs/stlvrml/bug30113 %%OCCROOT%%/tests/bugs/stlvrml/bug30389 %%OCCROOT%%/tests/bugs/stlvrml/bug30421 +%%OCCROOT%%/tests/bugs/stlvrml/bug31080 %%OCCROOT%%/tests/bugs/xde/begin %%OCCROOT%%/tests/bugs/xde/bug1055 %%OCCROOT%%/tests/bugs/xde/bug125_1 @@ -8963,7 +9072,6 @@ %%OCCROOT%%/tests/bugs/xde/bug25381 %%OCCROOT%%/tests/bugs/xde/bug25405 %%OCCROOT%%/tests/bugs/xde/bug25910 -%%OCCROOT%%/tests/bugs/xde/bug26174 %%OCCROOT%%/tests/bugs/xde/bug26216 %%OCCROOT%%/tests/bugs/xde/bug27069 %%OCCROOT%%/tests/bugs/xde/bug27169 @@ -8997,6 +9105,7 @@ %%OCCROOT%%/tests/bugs/xde/bug29597 %%OCCROOT%%/tests/bugs/xde/bug29599 %%OCCROOT%%/tests/bugs/xde/bug29821 +%%OCCROOT%%/tests/bugs/xde/bug29854 %%OCCROOT%%/tests/bugs/xde/bug29888_1 %%OCCROOT%%/tests/bugs/xde/bug29888_2 %%OCCROOT%%/tests/bugs/xde/bug29890_1 @@ -9014,6 +9123,9 @@ %%OCCROOT%%/tests/bugs/xde/bug31517 %%OCCROOT%%/tests/bugs/xde/bug31851 %%OCCROOT%%/tests/bugs/xde/bug321 +%%OCCROOT%%/tests/bugs/xde/bug32784 +%%OCCROOT%%/tests/bugs/xde/bug33011 +%%OCCROOT%%/tests/bugs/xde/bug33100 %%OCCROOT%%/tests/bugs/xde/bug34 %%OCCROOT%%/tests/bugs/xde/bug3926 %%OCCROOT%%/tests/bugs/xde/bug394 @@ -9432,6 +9544,29 @@ %%OCCROOT%%/tests/collections/n/seq %%OCCROOT%%/tests/collections/n/vec4 %%OCCROOT%%/tests/collections/n/vector +%%OCCROOT%%/tests/cr/approx/A1 +%%OCCROOT%%/tests/cr/approx/A2 +%%OCCROOT%%/tests/cr/approx/A3 +%%OCCROOT%%/tests/cr/approx/A4 +%%OCCROOT%%/tests/cr/base/A1 +%%OCCROOT%%/tests/cr/base/A2 +%%OCCROOT%%/tests/cr/base/A3 +%%OCCROOT%%/tests/cr/base/A4 +%%OCCROOT%%/tests/cr/base/A5 +%%OCCROOT%%/tests/cr/base/A6 +%%OCCROOT%%/tests/cr/base/B1 +%%OCCROOT%%/tests/cr/base/B10 +%%OCCROOT%%/tests/cr/base/B2 +%%OCCROOT%%/tests/cr/base/B3 +%%OCCROOT%%/tests/cr/base/B4 +%%OCCROOT%%/tests/cr/base/B5 +%%OCCROOT%%/tests/cr/base/B6 +%%OCCROOT%%/tests/cr/base/B7 +%%OCCROOT%%/tests/cr/base/B8 +%%OCCROOT%%/tests/cr/base/B9 +%%OCCROOT%%/tests/cr/begin +%%OCCROOT%%/tests/cr/end +%%OCCROOT%%/tests/cr/grids.list %%OCCROOT%%/tests/de/begin %%OCCROOT%%/tests/de/end %%OCCROOT%%/tests/de/grids.list @@ -10536,9 +10671,15 @@ %%OCCROOT%%/tests/de_mesh/gltf_read/lantern %%OCCROOT%%/tests/de_mesh/gltf_read/launchvehicle %%OCCROOT%%/tests/de_mesh/gltf_read/orient +%%OCCROOT%%/tests/de_mesh/gltf_write/010 +%%OCCROOT%%/tests/de_mesh/gltf_write/Diamond %%OCCROOT%%/tests/de_mesh/gltf_write/as1 +%%OCCROOT%%/tests/de_mesh/gltf_write/as1draco %%OCCROOT%%/tests/de_mesh/gltf_write/ball +%%OCCROOT%%/tests/de_mesh/gltf_write/bearing %%OCCROOT%%/tests/de_mesh/gltf_write/begin +%%OCCROOT%%/tests/de_mesh/gltf_write/bull +%%OCCROOT%%/tests/de_mesh/gltf_write/bull_parallel %%OCCROOT%%/tests/de_mesh/gltf_write/compound %%OCCROOT%%/tests/de_mesh/gltf_write/empty %%OCCROOT%%/tests/de_mesh/gltf_write/end @@ -10546,7 +10687,10 @@ %%OCCROOT%%/tests/de_mesh/gltf_write/helmetglb %%OCCROOT%%/tests/de_mesh/gltf_write/lantern %%OCCROOT%%/tests/de_mesh/gltf_write/lanternglb +%%OCCROOT%%/tests/de_mesh/gltf_write/screw +%%OCCROOT%%/tests/de_mesh/gltf_write/soapbox %%OCCROOT%%/tests/de_mesh/gltf_write/spheres +%%OCCROOT%%/tests/de_mesh/gltf_write/test %%OCCROOT%%/tests/de_mesh/grids.list %%OCCROOT%%/tests/de_mesh/obj_read/begin %%OCCROOT%%/tests/de_mesh/obj_read/end @@ -10562,6 +10706,8 @@ %%OCCROOT%%/tests/de_mesh/obj_write/mustang %%OCCROOT%%/tests/de_mesh/obj_write/ship_boat %%OCCROOT%%/tests/de_mesh/parse.rules +%%OCCROOT%%/tests/de_mesh/ply_write/equerre +%%OCCROOT%%/tests/de_mesh/ply_write/sangle %%OCCROOT%%/tests/de_mesh/shape_write_stl/A1 %%OCCROOT%%/tests/de_mesh/shape_write_stl/A10 %%OCCROOT%%/tests/de_mesh/shape_write_stl/A11 @@ -10577,6 +10723,22 @@ %%OCCROOT%%/tests/de_mesh/shape_write_stl/B1 %%OCCROOT%%/tests/de_mesh/shape_write_stl/begin %%OCCROOT%%/tests/de_mesh/shape_write_stl/end +%%OCCROOT%%/tests/de_mesh/step_read/A1 +%%OCCROOT%%/tests/de_mesh/step_read/A2 +%%OCCROOT%%/tests/de_mesh/step_read/A3 +%%OCCROOT%%/tests/de_mesh/step_read/B1 +%%OCCROOT%%/tests/de_mesh/step_read/begin +%%OCCROOT%%/tests/de_mesh/step_read/end +%%OCCROOT%%/tests/de_mesh/step_write/A1 +%%OCCROOT%%/tests/de_mesh/step_write/A2 +%%OCCROOT%%/tests/de_mesh/step_write/A3 +%%OCCROOT%%/tests/de_mesh/step_write/A4 +%%OCCROOT%%/tests/de_mesh/step_write/B1 +%%OCCROOT%%/tests/de_mesh/step_write/B2 +%%OCCROOT%%/tests/de_mesh/step_write/C1 +%%OCCROOT%%/tests/de_mesh/step_write/C2 +%%OCCROOT%%/tests/de_mesh/step_write/begin +%%OCCROOT%%/tests/de_mesh/step_write/end %%OCCROOT%%/tests/de_mesh/stl_read/A1 %%OCCROOT%%/tests/de_mesh/stl_read/A10 %%OCCROOT%%/tests/de_mesh/stl_read/A11 @@ -10626,6 +10788,73 @@ %%OCCROOT%%/tests/de_mesh/stl_read/D2 %%OCCROOT%%/tests/de_mesh/stl_read/D3 %%OCCROOT%%/tests/de_mesh/stl_read/begin +%%OCCROOT%%/tests/de_mesh/vrml_read/A1 +%%OCCROOT%%/tests/de_mesh/vrml_read/A2 +%%OCCROOT%%/tests/de_mesh/vrml_read/A3 +%%OCCROOT%%/tests/de_mesh/vrml_read/A4 +%%OCCROOT%%/tests/de_mesh/vrml_read/begin +%%OCCROOT%%/tests/de_wrapper/begin +%%OCCROOT%%/tests/de_wrapper/brep/A1 +%%OCCROOT%%/tests/de_wrapper/brep/A2 +%%OCCROOT%%/tests/de_wrapper/brep/A3 +%%OCCROOT%%/tests/de_wrapper/brep/A4 +%%OCCROOT%%/tests/de_wrapper/brep/begin +%%OCCROOT%%/tests/de_wrapper/configuration/A1 +%%OCCROOT%%/tests/de_wrapper/configuration/A2 +%%OCCROOT%%/tests/de_wrapper/configuration/A3 +%%OCCROOT%%/tests/de_wrapper/configuration/A4 +%%OCCROOT%%/tests/de_wrapper/configuration/begin +%%OCCROOT%%/tests/de_wrapper/end +%%OCCROOT%%/tests/de_wrapper/gltf/A1 +%%OCCROOT%%/tests/de_wrapper/gltf/A2 +%%OCCROOT%%/tests/de_wrapper/gltf/A3 +%%OCCROOT%%/tests/de_wrapper/gltf/A4 +%%OCCROOT%%/tests/de_wrapper/gltf/A5 +%%OCCROOT%%/tests/de_wrapper/gltf/A6 +%%OCCROOT%%/tests/de_wrapper/gltf/begin +%%OCCROOT%%/tests/de_wrapper/grids.list +%%OCCROOT%%/tests/de_wrapper/iges/A1 +%%OCCROOT%%/tests/de_wrapper/iges/A2 +%%OCCROOT%%/tests/de_wrapper/iges/A3 +%%OCCROOT%%/tests/de_wrapper/iges/A4 +%%OCCROOT%%/tests/de_wrapper/iges/A5 +%%OCCROOT%%/tests/de_wrapper/iges/A6 +%%OCCROOT%%/tests/de_wrapper/iges/begin +%%OCCROOT%%/tests/de_wrapper/obj/A1 +%%OCCROOT%%/tests/de_wrapper/obj/A2 +%%OCCROOT%%/tests/de_wrapper/obj/A3 +%%OCCROOT%%/tests/de_wrapper/obj/A4 +%%OCCROOT%%/tests/de_wrapper/obj/A5 +%%OCCROOT%%/tests/de_wrapper/obj/A6 +%%OCCROOT%%/tests/de_wrapper/obj/begin +%%OCCROOT%%/tests/de_wrapper/parse.rules +%%OCCROOT%%/tests/de_wrapper/ply/A1 +%%OCCROOT%%/tests/de_wrapper/ply/A2 +%%OCCROOT%%/tests/de_wrapper/ply/begin +%%OCCROOT%%/tests/de_wrapper/step/A1 +%%OCCROOT%%/tests/de_wrapper/step/A2 +%%OCCROOT%%/tests/de_wrapper/step/A3 +%%OCCROOT%%/tests/de_wrapper/step/A4 +%%OCCROOT%%/tests/de_wrapper/step/A5 +%%OCCROOT%%/tests/de_wrapper/step/A6 +%%OCCROOT%%/tests/de_wrapper/step/begin +%%OCCROOT%%/tests/de_wrapper/stl/A1 +%%OCCROOT%%/tests/de_wrapper/stl/A2 +%%OCCROOT%%/tests/de_wrapper/stl/A3 +%%OCCROOT%%/tests/de_wrapper/stl/A4 +%%OCCROOT%%/tests/de_wrapper/stl/begin +%%OCCROOT%%/tests/de_wrapper/vrml/A1 +%%OCCROOT%%/tests/de_wrapper/vrml/A2 +%%OCCROOT%%/tests/de_wrapper/vrml/A3 +%%OCCROOT%%/tests/de_wrapper/vrml/A4 +%%OCCROOT%%/tests/de_wrapper/vrml/A5 +%%OCCROOT%%/tests/de_wrapper/vrml/A6 +%%OCCROOT%%/tests/de_wrapper/vrml/begin +%%OCCROOT%%/tests/de_wrapper/xcaf/A1 +%%OCCROOT%%/tests/de_wrapper/xcaf/A2 +%%OCCROOT%%/tests/de_wrapper/xcaf/A3 +%%OCCROOT%%/tests/de_wrapper/xcaf/A4 +%%OCCROOT%%/tests/de_wrapper/xcaf/begin %%OCCROOT%%/tests/demo/data/file1.empty %%OCCROOT%%/tests/demo/draw/binpersist_1 %%OCCROOT%%/tests/demo/draw/binpersist_2 @@ -10639,6 +10868,7 @@ %%OCCROOT%%/tests/demo/draw/restore %%OCCROOT%%/tests/demo/grids.list %%OCCROOT%%/tests/demo/parse.rules +%%OCCROOT%%/tests/demo/samples/aisobject %%OCCROOT%%/tests/demo/samples/anc101 %%OCCROOT%%/tests/demo/samples/bottle %%OCCROOT%%/tests/demo/samples/cad @@ -11503,6 +11733,16 @@ %%OCCROOT%%/tests/heal/checkshape/bug27814_7 %%OCCROOT%%/tests/heal/checkshape/bug27814_8 %%OCCROOT%%/tests/heal/checkshape/bug27814_9 +%%OCCROOT%%/tests/heal/checkshape/bug32448_1 +%%OCCROOT%%/tests/heal/checkshape/bug32448_10 +%%OCCROOT%%/tests/heal/checkshape/bug32448_2 +%%OCCROOT%%/tests/heal/checkshape/bug32448_3 +%%OCCROOT%%/tests/heal/checkshape/bug32448_4 +%%OCCROOT%%/tests/heal/checkshape/bug32448_5 +%%OCCROOT%%/tests/heal/checkshape/bug32448_6 +%%OCCROOT%%/tests/heal/checkshape/bug32448_7 +%%OCCROOT%%/tests/heal/checkshape/bug32448_8 +%%OCCROOT%%/tests/heal/checkshape/bug32448_9 %%OCCROOT%%/tests/heal/data/MDTV %%OCCROOT%%/tests/heal/data/advanced/A1 %%OCCROOT%%/tests/heal/data/advanced/A2 @@ -12570,6 +12810,34 @@ %%OCCROOT%%/tests/heal/split_continuity_standard/begin %%OCCROOT%%/tests/heal/split_continuity_standard/cases.list %%OCCROOT%%/tests/heal/split_continuity_standard/end +%%OCCROOT%%/tests/heal/split_number/A1 +%%OCCROOT%%/tests/heal/split_number/A2 +%%OCCROOT%%/tests/heal/split_number/A3 +%%OCCROOT%%/tests/heal/split_number/A4 +%%OCCROOT%%/tests/heal/split_number/A5 +%%OCCROOT%%/tests/heal/split_number/A6 +%%OCCROOT%%/tests/heal/split_number/A7 +%%OCCROOT%%/tests/heal/split_number/A8 +%%OCCROOT%%/tests/heal/split_number/B1 +%%OCCROOT%%/tests/heal/split_number/B2 +%%OCCROOT%%/tests/heal/split_number/B3 +%%OCCROOT%%/tests/heal/split_number/B4 +%%OCCROOT%%/tests/heal/split_number/B5 +%%OCCROOT%%/tests/heal/split_number/B6 +%%OCCROOT%%/tests/heal/split_number/C1 +%%OCCROOT%%/tests/heal/split_number/C2 +%%OCCROOT%%/tests/heal/split_number/D1 +%%OCCROOT%%/tests/heal/split_number/D2 +%%OCCROOT%%/tests/heal/split_number/end +%%OCCROOT%%/tests/heal/split_two_numbers/A1 +%%OCCROOT%%/tests/heal/split_two_numbers/A2 +%%OCCROOT%%/tests/heal/split_two_numbers/A3 +%%OCCROOT%%/tests/heal/split_two_numbers/A4 +%%OCCROOT%%/tests/heal/split_two_numbers/B1 +%%OCCROOT%%/tests/heal/split_two_numbers/B2 +%%OCCROOT%%/tests/heal/split_two_numbers/B3 +%%OCCROOT%%/tests/heal/split_two_numbers/B4 +%%OCCROOT%%/tests/heal/split_two_numbers/end %%OCCROOT%%/tests/heal/surface_to_bezier/A1 %%OCCROOT%%/tests/heal/surface_to_bezier/A2 %%OCCROOT%%/tests/heal/surface_to_bezier/A3 @@ -12733,7 +13001,6 @@ %%OCCROOT%%/tests/heal/wire_tails_real/A6 %%OCCROOT%%/tests/heal/wire_tails_real/A7 %%OCCROOT%%/tests/hlr/begin -%%OCCROOT%%/tests/hlr/end %%OCCROOT%%/tests/hlr/exact_hlr/A1 %%OCCROOT%%/tests/hlr/exact_hlr/A2 %%OCCROOT%%/tests/hlr/exact_hlr/A3 @@ -12815,7 +13082,9 @@ %%OCCROOT%%/tests/hlr/exact_hlr/bug27979_7 %%OCCROOT%%/tests/hlr/exact_hlr/bug29956 %%OCCROOT%%/tests/hlr/exact_hlr/bug30243 +%%OCCROOT%%/tests/hlr/exact_hlr/bug32747 %%OCCROOT%%/tests/hlr/exact_hlr/bug7691 +%%OCCROOT%%/tests/hlr/exact_hlr/end %%OCCROOT%%/tests/hlr/grids.list %%OCCROOT%%/tests/hlr/poly_hlr/A1 %%OCCROOT%%/tests/hlr/poly_hlr/A2 @@ -12905,8 +13174,12 @@ %%OCCROOT%%/tests/hlr/poly_hlr/bug29956 %%OCCROOT%%/tests/hlr/poly_hlr/bug30243 %%OCCROOT%%/tests/hlr/poly_hlr/bug7691 +%%OCCROOT%%/tests/hlr/poly_hlr/end %%OCCROOT%%/tests/lowalgos/2dapprox/bug29679_1 %%OCCROOT%%/tests/lowalgos/2dapprox/bug29679_2 +%%OCCROOT%%/tests/lowalgos/2ddeviation/A1 +%%OCCROOT%%/tests/lowalgos/2ddeviation/A2 +%%OCCROOT%%/tests/lowalgos/2ddeviation/A3 %%OCCROOT%%/tests/lowalgos/2dgcc/buc60607_1 %%OCCROOT%%/tests/lowalgos/2dgcc/buc60607_2 %%OCCROOT%%/tests/lowalgos/2dgcc/buc60607_3 @@ -13007,6 +13280,8 @@ %%OCCROOT%%/tests/lowalgos/extcc/bug29858_02 %%OCCROOT%%/tests/lowalgos/extcc/bug29858_03 %%OCCROOT%%/tests/lowalgos/extcc/bug29858_04 +%%OCCROOT%%/tests/lowalgos/extcc/bug32796 +%%OCCROOT%%/tests/lowalgos/extcc/bug32882 %%OCCROOT%%/tests/lowalgos/extcs/bug29426_1 %%OCCROOT%%/tests/lowalgos/extcs/bug29426_2 %%OCCROOT%%/tests/lowalgos/extcs/bug32225 @@ -13212,6 +13487,8 @@ %%OCCROOT%%/tests/lowalgos/intss/bug31602 %%OCCROOT%%/tests/lowalgos/intss/bug324 %%OCCROOT%%/tests/lowalgos/intss/bug32607 +%%OCCROOT%%/tests/lowalgos/intss/bug32701 +%%OCCROOT%%/tests/lowalgos/intss/bug32849 %%OCCROOT%%/tests/lowalgos/intss/bug333 %%OCCROOT%%/tests/lowalgos/intss/bug370 %%OCCROOT%%/tests/lowalgos/intss/bug371 @@ -13232,6 +13509,27 @@ %%OCCROOT%%/tests/lowalgos/progress/A2 %%OCCROOT%%/tests/lowalgos/progress/A3 %%OCCROOT%%/tests/lowalgos/progress/A4 +%%OCCROOT%%/tests/lowalgos/proximity/A1 +%%OCCROOT%%/tests/lowalgos/proximity/A2 +%%OCCROOT%%/tests/lowalgos/proximity/A3 +%%OCCROOT%%/tests/lowalgos/proximity/A4 +%%OCCROOT%%/tests/lowalgos/proximity/A5 +%%OCCROOT%%/tests/lowalgos/proximity/B1 +%%OCCROOT%%/tests/lowalgos/proximity/B2 +%%OCCROOT%%/tests/lowalgos/proximity/B3 +%%OCCROOT%%/tests/lowalgos/proximity/B4 +%%OCCROOT%%/tests/lowalgos/proximity/B5 +%%OCCROOT%%/tests/lowalgos/proximity/B6 +%%OCCROOT%%/tests/lowalgos/proximity/C1 +%%OCCROOT%%/tests/lowalgos/proximity/C2 +%%OCCROOT%%/tests/lowalgos/proximity/C3 +%%OCCROOT%%/tests/lowalgos/proximity/C4 +%%OCCROOT%%/tests/lowalgos/proximity/D1 +%%OCCROOT%%/tests/lowalgos/proximity/D2 +%%OCCROOT%%/tests/lowalgos/proximity/D3 +%%OCCROOT%%/tests/lowalgos/proximity/E1 +%%OCCROOT%%/tests/lowalgos/proximity/E2 +%%OCCROOT%%/tests/lowalgos/proximity/end %%OCCROOT%%/tests/mesh/advanced_incmesh/begin %%OCCROOT%%/tests/mesh/advanced_incmesh/cases.list %%OCCROOT%%/tests/mesh/advanced_incmesh_parallel/begin @@ -13671,6 +13969,7 @@ %%OCCROOT%%/tests/offset/bugs/bug26288 %%OCCROOT%%/tests/offset/bugs/bug26442_1 %%OCCROOT%%/tests/offset/bugs/bug26442_2 +%%OCCROOT%%/tests/offset/bugs/bug27081 %%OCCROOT%%/tests/offset/bugs/bug27908 %%OCCROOT%%/tests/offset/bugs/bug27909 %%OCCROOT%%/tests/offset/bugs/bug27910 @@ -14295,6 +14594,8 @@ %%OCCROOT%%/tests/offset/shape_type_i_c/XU1 %%OCCROOT%%/tests/offset/shape_type_i_c/XU2 %%OCCROOT%%/tests/offset/shape_type_i_c/XU3 +%%OCCROOT%%/tests/offset/shape_type_i_c/XU4 +%%OCCROOT%%/tests/offset/shape_type_i_c/XU5 %%OCCROOT%%/tests/offset/shape_type_i_c/XV1 %%OCCROOT%%/tests/offset/shape_type_i_c/XV2 %%OCCROOT%%/tests/offset/shape_type_i_c/XV3 @@ -14327,8 +14628,16 @@ %%OCCROOT%%/tests/offset/shape_type_i_c/XY6 %%OCCROOT%%/tests/offset/shape_type_i_c/XY7 %%OCCROOT%%/tests/offset/shape_type_i_c/XY8 +%%OCCROOT%%/tests/offset/shape_type_i_c/XY9 %%OCCROOT%%/tests/offset/shape_type_i_c/XZ1 %%OCCROOT%%/tests/offset/shape_type_i_c/XZ2 +%%OCCROOT%%/tests/offset/shape_type_i_c/XZ3 +%%OCCROOT%%/tests/offset/shape_type_i_c/XZ4 +%%OCCROOT%%/tests/offset/shape_type_i_c/XZ5 +%%OCCROOT%%/tests/offset/shape_type_i_c/XZ6 +%%OCCROOT%%/tests/offset/shape_type_i_c/XZ7 +%%OCCROOT%%/tests/offset/shape_type_i_c/XZ8 +%%OCCROOT%%/tests/offset/shape_type_i_c/XZ9 %%OCCROOT%%/tests/offset/shape_type_i_c/Y1 %%OCCROOT%%/tests/offset/shape_type_i_c/Y2 %%OCCROOT%%/tests/offset/shape_type_i_c/Y3 @@ -15693,6 +16002,7 @@ %%OCCROOT%%/tests/opengl/data/background/bug26599 %%OCCROOT%%/tests/opengl/data/background/bug27836 %%OCCROOT%%/tests/opengl/data/background/elliptical +%%OCCROOT%%/tests/opengl/data/background/skydome %%OCCROOT%%/tests/opengl/data/background/srgb %%OCCROOT%%/tests/opengl/data/clipping/bug22906 %%OCCROOT%%/tests/opengl/data/clipping/bug23484_2 @@ -15716,12 +16026,21 @@ %%OCCROOT%%/tests/opengl/data/clipping/clipping1 %%OCCROOT%%/tests/opengl/data/general/bndbox1 %%OCCROOT%%/tests/opengl/data/general/bug25679 +%%OCCROOT%%/tests/opengl/data/general/bug32722 %%OCCROOT%%/tests/opengl/data/general/culldist +%%OCCROOT%%/tests/opengl/data/general/cullface %%OCCROOT%%/tests/opengl/data/general/cullsize %%OCCROOT%%/tests/opengl/data/general/depthprepass %%OCCROOT%%/tests/opengl/data/general/double_precision %%OCCROOT%%/tests/opengl/data/general/light_off %%OCCROOT%%/tests/opengl/data/general/msaa +%%OCCROOT%%/tests/opengl/data/general/multiview1 +%%OCCROOT%%/tests/opengl/data/general/multiview1ssaa +%%OCCROOT%%/tests/opengl/data/general/multiview2 +%%OCCROOT%%/tests/opengl/data/general/multiview3 +%%OCCROOT%%/tests/opengl/data/general/multiview4 +%%OCCROOT%%/tests/opengl/data/general/multiview5 +%%OCCROOT%%/tests/opengl/data/general/multiview6 %%OCCROOT%%/tests/opengl/data/general/rendscale %%OCCROOT%%/tests/opengl/data/general/stereo %%OCCROOT%%/tests/opengl/data/general/tiles @@ -15809,6 +16128,8 @@ %%OCCROOT%%/tests/opengl/data/shadows/dir3 %%OCCROOT%%/tests/opengl/data/shadows/dirhead %%OCCROOT%%/tests/opengl/data/shadows/double_precision +%%OCCROOT%%/tests/opengl/data/shadows/spotlight +%%OCCROOT%%/tests/opengl/data/shadows/trsfpers %%OCCROOT%%/tests/opengl/data/silhouette/outline1 %%OCCROOT%%/tests/opengl/data/silhouette/outline2 %%OCCROOT%%/tests/opengl/data/text/A1 @@ -15859,6 +16180,7 @@ %%OCCROOT%%/tests/opengl/data/textures/cubemap_ibl %%OCCROOT%%/tests/opengl/data/textures/cubemap_jpg %%OCCROOT%%/tests/opengl/data/textures/pbr_tangent_normal +%%OCCROOT%%/tests/opengl/data/textures/texture_3d %%OCCROOT%%/tests/opengl/data/textures/texture_trsf %%OCCROOT%%/tests/opengl/data/textures/texture_trsf2 %%OCCROOT%%/tests/opengl/data/textures/texture_trsf3 @@ -15952,6 +16274,7 @@ %%OCCROOT%%/tests/perf/de/bug29830_2 %%OCCROOT%%/tests/perf/de/bug29830_3 %%OCCROOT%%/tests/perf/de/bug29830_dir/script +%%OCCROOT%%/tests/perf/de/bug33046 %%OCCROOT%%/tests/perf/draw/bug28404 %%OCCROOT%%/tests/perf/draw/restore %%OCCROOT%%/tests/perf/end @@ -16125,6 +16448,7 @@ %%OCCROOT%%/tests/persist/fsd/begin %%OCCROOT%%/tests/persist/grids.list %%OCCROOT%%/tests/pipe/begin +%%OCCROOT%%/tests/pipe/bugs/bug24049 %%OCCROOT%%/tests/pipe/bugs/bug24909_1 %%OCCROOT%%/tests/pipe/bugs/bug24909_2 %%OCCROOT%%/tests/pipe/bugs/bug24909_3 @@ -16135,6 +16459,9 @@ %%OCCROOT%%/tests/pipe/bugs/bug30148 %%OCCROOT%%/tests/pipe/bugs/bug31147 %%OCCROOT%%/tests/pipe/bugs/bug31631 +%%OCCROOT%%/tests/pipe/bugs/bug32807 +%%OCCROOT%%/tests/pipe/bugs/bug32809 +%%OCCROOT%%/tests/pipe/bugs/end %%OCCROOT%%/tests/pipe/grids.list %%OCCROOT%%/tests/pipe/parse.rules %%OCCROOT%%/tests/pipe/specific/A1 @@ -17457,6 +17784,29 @@ %%OCCROOT%%/tests/thrusection/not_solids/W6 %%OCCROOT%%/tests/thrusection/not_solids/W7 %%OCCROOT%%/tests/thrusection/not_solids/W8 +%%OCCROOT%%/tests/thrusection/not_solids_locked/A1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/B1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/C1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/D1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/F1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/G1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/H1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/I1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/J1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/K1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/L1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/M1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/N1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/O1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/P1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/Q1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/R1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/S1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/T1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/U1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/V1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/W1 +%%OCCROOT%%/tests/thrusection/not_solids_locked/W8 %%OCCROOT%%/tests/thrusection/parse.rules %%OCCROOT%%/tests/thrusection/solids/A1 %%OCCROOT%%/tests/thrusection/solids/A2 @@ -17467,6 +17817,15 @@ %%OCCROOT%%/tests/thrusection/solids/A7 %%OCCROOT%%/tests/thrusection/solids/A8 %%OCCROOT%%/tests/thrusection/solids/A9 +%%OCCROOT%%/tests/thrusection/solids_locked/A1 +%%OCCROOT%%/tests/thrusection/solids_locked/A2 +%%OCCROOT%%/tests/thrusection/solids_locked/A3 +%%OCCROOT%%/tests/thrusection/solids_locked/A4 +%%OCCROOT%%/tests/thrusection/solids_locked/A5 +%%OCCROOT%%/tests/thrusection/solids_locked/A6 +%%OCCROOT%%/tests/thrusection/solids_locked/A7 +%%OCCROOT%%/tests/thrusection/solids_locked/A8 +%%OCCROOT%%/tests/thrusection/solids_locked/A9 %%OCCROOT%%/tests/thrusection/specific/A1 %%OCCROOT%%/tests/thrusection/specific/A2 %%OCCROOT%%/tests/thrusection/specific/A3 @@ -17585,6 +17944,56 @@ %%OCCROOT%%/tests/thrusection/specific/N2 %%OCCROOT%%/tests/thrusection/specific/N3 %%OCCROOT%%/tests/thrusection/specific/N4 +%%OCCROOT%%/tests/thrusection/specific/N5 +%%OCCROOT%%/tests/thrusection/specific/N6 +%%OCCROOT%%/tests/thrusection/specific_locked/A1 +%%OCCROOT%%/tests/thrusection/specific_locked/A2 +%%OCCROOT%%/tests/thrusection/specific_locked/A3 +%%OCCROOT%%/tests/thrusection/specific_locked/A4 +%%OCCROOT%%/tests/thrusection/specific_locked/A6 +%%OCCROOT%%/tests/thrusection/specific_locked/A7 +%%OCCROOT%%/tests/thrusection/specific_locked/A8 +%%OCCROOT%%/tests/thrusection/specific_locked/B1 +%%OCCROOT%%/tests/thrusection/specific_locked/B2 +%%OCCROOT%%/tests/thrusection/specific_locked/B3 +%%OCCROOT%%/tests/thrusection/specific_locked/B5 +%%OCCROOT%%/tests/thrusection/specific_locked/B6 +%%OCCROOT%%/tests/thrusection/specific_locked/B7 +%%OCCROOT%%/tests/thrusection/specific_locked/B9 +%%OCCROOT%%/tests/thrusection/specific_locked/C1 +%%OCCROOT%%/tests/thrusection/specific_locked/C2 +%%OCCROOT%%/tests/thrusection/specific_locked/C4 +%%OCCROOT%%/tests/thrusection/specific_locked/C5 +%%OCCROOT%%/tests/thrusection/specific_locked/C6 +%%OCCROOT%%/tests/thrusection/specific_locked/C8 +%%OCCROOT%%/tests/thrusection/specific_locked/C9 +%%OCCROOT%%/tests/thrusection/specific_locked/D1 +%%OCCROOT%%/tests/thrusection/specific_locked/D3 +%%OCCROOT%%/tests/thrusection/specific_locked/D4 +%%OCCROOT%%/tests/thrusection/specific_locked/D5 +%%OCCROOT%%/tests/thrusection/specific_locked/D7 +%%OCCROOT%%/tests/thrusection/specific_locked/D8 +%%OCCROOT%%/tests/thrusection/specific_locked/D9 +%%OCCROOT%%/tests/thrusection/specific_locked/E1 +%%OCCROOT%%/tests/thrusection/specific_locked/E2 +%%OCCROOT%%/tests/thrusection/specific_locked/E3 +%%OCCROOT%%/tests/thrusection/specific_locked/E4 +%%OCCROOT%%/tests/thrusection/specific_locked/E6 +%%OCCROOT%%/tests/thrusection/specific_locked/E7 +%%OCCROOT%%/tests/thrusection/specific_locked/E8 +%%OCCROOT%%/tests/thrusection/specific_locked/F1 +%%OCCROOT%%/tests/thrusection/specific_locked/F2 +%%OCCROOT%%/tests/thrusection/specific_locked/F3 +%%OCCROOT%%/tests/thrusection/specific_locked/F5 +%%OCCROOT%%/tests/thrusection/specific_locked/F6 +%%OCCROOT%%/tests/thrusection/specific_locked/F7 +%%OCCROOT%%/tests/thrusection/specific_locked/F9 +%%OCCROOT%%/tests/thrusection/specific_locked/G1 +%%OCCROOT%%/tests/thrusection/specific_locked/G2 +%%OCCROOT%%/tests/thrusection/specific_locked/G4 +%%OCCROOT%%/tests/thrusection/specific_locked/G6 +%%OCCROOT%%/tests/thrusection/specific_locked/N5 +%%OCCROOT%%/tests/thrusection/specific_locked/N6 %%OCCROOT%%/tests/tools/begin %%OCCROOT%%/tests/tools/dfbrowser/A1 %%OCCROOT%%/tests/tools/dfbrowser/A2 @@ -17622,7 +18031,6 @@ %%OCCROOT%%/tests/v3d/bugs/bug112 %%OCCROOT%%/tests/v3d/bugs/bug112_1 %%OCCROOT%%/tests/v3d/bugs/bug11615 -%%OCCROOT%%/tests/v3d/bugs/bug1174 %%OCCROOT%%/tests/v3d/bugs/bug12584 %%OCCROOT%%/tests/v3d/bugs/bug128 %%OCCROOT%%/tests/v3d/bugs/bug136 @@ -17805,6 +18213,7 @@ %%OCCROOT%%/tests/v3d/bugs/bug31794 %%OCCROOT%%/tests/v3d/bugs/bug319 %%OCCROOT%%/tests/v3d/bugs/bug31965 +%%OCCROOT%%/tests/v3d/bugs/bug32978 %%OCCROOT%%/tests/v3d/bugs/bug331 %%OCCROOT%%/tests/v3d/bugs/bug331_1 %%OCCROOT%%/tests/v3d/bugs/bug344 @@ -17901,6 +18310,7 @@ %%OCCROOT%%/tests/v3d/light_source/manipulator %%OCCROOT%%/tests/v3d/manipulator/bug30669 %%OCCROOT%%/tests/v3d/manipulator/disable_parts +%%OCCROOT%%/tests/v3d/manipulator/drag_in_2d_view %%OCCROOT%%/tests/v3d/manipulator/dragg %%OCCROOT%%/tests/v3d/manipulator/rotate %%OCCROOT%%/tests/v3d/manipulator/rotate2 @@ -18080,6 +18490,7 @@ %%OCCROOT%%/tests/vselect/bugs/bug31440 %%OCCROOT%%/tests/vselect/bugs/bug32205 %%OCCROOT%%/tests/vselect/bugs/bug32482 +%%OCCROOT%%/tests/vselect/bugs/bug33084 %%OCCROOT%%/tests/vselect/bugs/bug6652 %%OCCROOT%%/tests/vselect/bugs/bug7186 %%OCCROOT%%/tests/vselect/bugs/bug727 @@ -18091,15 +18502,21 @@ %%OCCROOT%%/tests/vselect/clipping/bug30777 %%OCCROOT%%/tests/vselect/clipping/bug30906 %%OCCROOT%%/tests/vselect/clipping/bug31650 -%%OCCROOT%%/tests/vselect/cone_cylinder/begin %%OCCROOT%%/tests/vselect/cone_cylinder/check_depth +%%OCCROOT%%/tests/vselect/cone_cylinder/circle_sector +%%OCCROOT%%/tests/vselect/cone_cylinder/circle_wire %%OCCROOT%%/tests/vselect/cone_cylinder/detecting +%%OCCROOT%%/tests/vselect/cone_cylinder/filled_circle %%OCCROOT%%/tests/vselect/cone_cylinder/generate_images +%%OCCROOT%%/tests/vselect/cone_cylinder/hollow_cone_cyl %%OCCROOT%%/tests/vselect/cone_cylinder/polygon_selection %%OCCROOT%%/tests/vselect/cone_cylinder/rectangle_selection %%OCCROOT%%/tests/vselect/cone_cylinder/single_click_selection_cone %%OCCROOT%%/tests/vselect/cone_cylinder/single_click_selection_cylinder %%OCCROOT%%/tests/vselect/cone_cylinder/single_click_selection_trunc_cone +%%OCCROOT%%/tests/vselect/cone_cylinder/transformed_circle +%%OCCROOT%%/tests/vselect/cone_cylinder/trsf_cone +%%OCCROOT%%/tests/vselect/cone_cylinder/trsf_cyl %%OCCROOT%%/tests/vselect/edge/A10 %%OCCROOT%%/tests/vselect/edge/B1 %%OCCROOT%%/tests/vselect/edge/F2 @@ -18133,13 +18550,13 @@ %%OCCROOT%%/tests/vselect/face/end %%OCCROOT%%/tests/vselect/grids.list %%OCCROOT%%/tests/vselect/parse.rules -%%OCCROOT%%/tests/vselect/sphere/begin %%OCCROOT%%/tests/vselect/sphere/check_depth %%OCCROOT%%/tests/vselect/sphere/detecting %%OCCROOT%%/tests/vselect/sphere/generate_images %%OCCROOT%%/tests/vselect/sphere/polygon_selection %%OCCROOT%%/tests/vselect/sphere/rectangle_selection %%OCCROOT%%/tests/vselect/sphere/single_click_selection +%%OCCROOT%%/tests/vselect/sphere/trsf %%OCCROOT%%/tests/vselect/vertex/A2 %%OCCROOT%%/tests/vselect/vertex/A3 %%OCCROOT%%/tests/vselect/vertex/A4 @@ -18532,6 +18949,10 @@ %%OCCROOT%%/tests/xcaf/igs_to_xbf/E6 %%OCCROOT%%/tests/xcaf/igs_to_xbf/E7 %%OCCROOT%%/tests/xcaf/parse.rules +%%OCCROOT%%/tests/xcaf/rescale/A1 +%%OCCROOT%%/tests/xcaf/rescale/A2 +%%OCCROOT%%/tests/xcaf/rescale/B1 +%%OCCROOT%%/tests/xcaf/rescale/C1 %%OCCROOT%%/tests/xcaf/stp_add_ACL/A1 %%OCCROOT%%/tests/xcaf/stp_to_xbf/A1 %%OCCROOT%%/tests/xcaf/stp_to_xbf/A2 @@ -18653,6 +19074,10 @@ %%OCCROOT%%/tests/xcaf/stp_to_xbf/O1 %%OCCROOT%%/tests/xcaf/stp_to_xbf/O2 %%OCCROOT%%/tests/xcaf/stp_to_xbf/O3 +%%OCCROOT%%/tests/xcaf/traverse/A1 +%%OCCROOT%%/tests/xcaf/traverse/A2 +%%OCCROOT%%/tests/xcaf/traverse/A3 +%%OCCROOT%%/tests/xcaf/traverse/B1 %%OCCROOT%%/tests/xcaf/xbf/A1 %%OCCROOT%%/tests/xcaf/xbf_add_ACL/A1 %%OCCROOT%%/tests/xcaf/xbf_add_CL/A1 @@ -18793,20 +19218,14 @@ include/OpenCASCADE/AIS_Chamf2dDimension.hxx include/OpenCASCADE/AIS_Chamf3dDimension.hxx include/OpenCASCADE/AIS_Circle.hxx -include/OpenCASCADE/AIS_ClearMode.hxx include/OpenCASCADE/AIS_ColorScale.hxx include/OpenCASCADE/AIS_ColoredDrawer.hxx include/OpenCASCADE/AIS_ColoredShape.hxx include/OpenCASCADE/AIS_ConcentricRelation.hxx -include/OpenCASCADE/AIS_ConnectStatus.hxx include/OpenCASCADE/AIS_ConnectedInteractive.hxx include/OpenCASCADE/AIS_DataMapIteratorOfDataMapOfIOStatus.hxx -include/OpenCASCADE/AIS_DataMapIteratorOfDataMapOfSelStat.hxx -include/OpenCASCADE/AIS_DataMapIteratorOfDataMapofIntegerListOfinteractive.hxx include/OpenCASCADE/AIS_DataMapOfIOStatus.hxx -include/OpenCASCADE/AIS_DataMapOfSelStat.hxx include/OpenCASCADE/AIS_DataMapOfShapeDrawer.hxx -include/OpenCASCADE/AIS_DataMapofIntegerListOfinteractive.hxx include/OpenCASCADE/AIS_DiameterDimension.hxx include/OpenCASCADE/AIS_Dimension.hxx include/OpenCASCADE/AIS_DimensionOwner.hxx @@ -18821,7 +19240,6 @@ include/OpenCASCADE/AIS_GlobalStatus.hxx include/OpenCASCADE/AIS_GraphicTool.hxx include/OpenCASCADE/AIS_IdenticRelation.hxx -include/OpenCASCADE/AIS_IndexedDataMapOfOwnerPrs.hxx include/OpenCASCADE/AIS_InteractiveContext.hxx include/OpenCASCADE/AIS_InteractiveObject.hxx include/OpenCASCADE/AIS_KindOfInteractive.hxx @@ -18833,8 +19251,6 @@ include/OpenCASCADE/AIS_Manipulator.hxx include/OpenCASCADE/AIS_ManipulatorMode.hxx include/OpenCASCADE/AIS_ManipulatorOwner.hxx -include/OpenCASCADE/AIS_MapIteratorOfMapOfInteractive.hxx -include/OpenCASCADE/AIS_MapOfInteractive.hxx include/OpenCASCADE/AIS_MaxRadiusDimension.hxx include/OpenCASCADE/AIS_MediaPlayer.hxx include/OpenCASCADE/AIS_MidPointRelation.hxx @@ -18859,7 +19275,6 @@ include/OpenCASCADE/AIS_Selection.hxx include/OpenCASCADE/AIS_SelectionModesConcurrency.hxx include/OpenCASCADE/AIS_SelectionScheme.hxx -include/OpenCASCADE/AIS_SequenceOfInteractive.hxx include/OpenCASCADE/AIS_Shape.hxx include/OpenCASCADE/AIS_SignatureFilter.hxx include/OpenCASCADE/AIS_StatusOfDetection.hxx @@ -19051,6 +19466,7 @@ include/OpenCASCADE/Aspect_RenderingContext.hxx include/OpenCASCADE/Aspect_ScrollDelta.hxx include/OpenCASCADE/Aspect_SequenceOfColor.hxx +include/OpenCASCADE/Aspect_SkydomeBackground.hxx include/OpenCASCADE/Aspect_Touch.hxx include/OpenCASCADE/Aspect_TouchMap.hxx include/OpenCASCADE/Aspect_TrackedDevicePose.hxx @@ -19327,6 +19743,7 @@ include/OpenCASCADE/BRepBuilderAPI_MakeFace.hxx include/OpenCASCADE/BRepBuilderAPI_MakePolygon.hxx include/OpenCASCADE/BRepBuilderAPI_MakeShape.hxx +include/OpenCASCADE/BRepBuilderAPI_MakeShapeOnMesh.hxx include/OpenCASCADE/BRepBuilderAPI_MakeShell.hxx include/OpenCASCADE/BRepBuilderAPI_MakeSolid.hxx include/OpenCASCADE/BRepBuilderAPI_MakeVertex.hxx @@ -19386,6 +19803,8 @@ include/OpenCASCADE/BRepExtrema_MapOfIntegerPackedMapOfInteger.hxx include/OpenCASCADE/BRepExtrema_OverlapTool.hxx include/OpenCASCADE/BRepExtrema_Poly.hxx +include/OpenCASCADE/BRepExtrema_ProximityDistTool.hxx +include/OpenCASCADE/BRepExtrema_ProximityValueTool.hxx include/OpenCASCADE/BRepExtrema_SelfIntersection.hxx include/OpenCASCADE/BRepExtrema_SeqOfSolution.hxx include/OpenCASCADE/BRepExtrema_ShapeProximity.hxx @@ -19519,8 +19938,10 @@ include/OpenCASCADE/BRepLib_MakeSolid.hxx include/OpenCASCADE/BRepLib_MakeVertex.hxx include/OpenCASCADE/BRepLib_MakeWire.hxx +include/OpenCASCADE/BRepLib_PointCloudShape.hxx include/OpenCASCADE/BRepLib_ShapeModification.hxx include/OpenCASCADE/BRepLib_ShellError.hxx +include/OpenCASCADE/BRepLib_ToolTriangulatedShape.hxx include/OpenCASCADE/BRepLib_ValidateEdge.hxx include/OpenCASCADE/BRepLib_WireError.hxx include/OpenCASCADE/BRepMAT2d_BisectingLocus.hxx @@ -19565,6 +19986,7 @@ include/OpenCASCADE/BRepMesh_EdgeDiscret.hxx include/OpenCASCADE/BRepMesh_EdgeParameterProvider.hxx include/OpenCASCADE/BRepMesh_EdgeTessellationExtractor.hxx +include/OpenCASCADE/BRepMesh_ExtrusionRangeSplitter.hxx include/OpenCASCADE/BRepMesh_FaceChecker.hxx include/OpenCASCADE/BRepMesh_FaceDiscret.hxx include/OpenCASCADE/BRepMesh_FactoryError.hxx @@ -19591,6 +20013,7 @@ include/OpenCASCADE/BRepMesh_Triangle.hxx include/OpenCASCADE/BRepMesh_Triangulator.hxx include/OpenCASCADE/BRepMesh_UVParamRangeSplitter.hxx +include/OpenCASCADE/BRepMesh_UndefinedRangeSplitter.hxx include/OpenCASCADE/BRepMesh_Vertex.hxx include/OpenCASCADE/BRepMesh_VertexInspector.hxx include/OpenCASCADE/BRepMesh_VertexTool.hxx @@ -19681,6 +20104,7 @@ include/OpenCASCADE/BRepToIGES_BRSolid.hxx include/OpenCASCADE/BRepToIGES_BRWire.hxx include/OpenCASCADE/BRepTools.hxx +include/OpenCASCADE/BRepTools_CopyModification.hxx include/OpenCASCADE/BRepTools_DataMapIteratorOfMapOfVertexPnt2d.hxx include/OpenCASCADE/BRepTools_GTrsfModification.hxx include/OpenCASCADE/BRepTools_History.hxx @@ -19978,7 +20402,6 @@ include/OpenCASCADE/Bnd_B3x.gxx include/OpenCASCADE/Bnd_B3x.lxx include/OpenCASCADE/Bnd_BoundSortBox.hxx -include/OpenCASCADE/Bnd_BoundSortBox2d.hxx include/OpenCASCADE/Bnd_Box.hxx include/OpenCASCADE/Bnd_Box2d.hxx include/OpenCASCADE/Bnd_HArray1OfBox.hxx @@ -19986,7 +20409,6 @@ include/OpenCASCADE/Bnd_HArray1OfSphere.hxx include/OpenCASCADE/Bnd_OBB.hxx include/OpenCASCADE/Bnd_Range.hxx -include/OpenCASCADE/Bnd_SeqOfBox.hxx include/OpenCASCADE/Bnd_Sphere.hxx include/OpenCASCADE/Bnd_Sphere.lxx include/OpenCASCADE/Bnd_Tools.hxx @@ -20178,6 +20600,14 @@ include/OpenCASCADE/DDataStd_TreeBrowser.hxx include/OpenCASCADE/DDocStd.hxx include/OpenCASCADE/DDocStd_DrawDocument.hxx +include/OpenCASCADE/DEBRepCascade_ConfigurationNode.hxx +include/OpenCASCADE/DEBRepCascade_Provider.hxx +include/OpenCASCADE/DEXCAFCascade_ConfigurationNode.hxx +include/OpenCASCADE/DEXCAFCascade_Provider.hxx +include/OpenCASCADE/DE_ConfigurationContext.hxx +include/OpenCASCADE/DE_ConfigurationNode.hxx +include/OpenCASCADE/DE_Provider.hxx +include/OpenCASCADE/DE_Wrapper.hxx include/OpenCASCADE/DNaming.hxx include/OpenCASCADE/DNaming_BooleanOperationDriver.hxx include/OpenCASCADE/DNaming_BoxDriver.hxx @@ -20384,6 +20814,36 @@ include/OpenCASCADE/Expr_UnaryFunction.hxx include/OpenCASCADE/Expr_UnaryMinus.hxx include/OpenCASCADE/Expr_UnknownIterator.hxx +include/OpenCASCADE/Express.hxx +include/OpenCASCADE/Express_Alias.hxx +include/OpenCASCADE/Express_Array.hxx +include/OpenCASCADE/Express_Bag.hxx +include/OpenCASCADE/Express_Boolean.hxx +include/OpenCASCADE/Express_ComplexType.hxx +include/OpenCASCADE/Express_DataMapOfAsciiStringItem.hxx +include/OpenCASCADE/Express_Entity.hxx +include/OpenCASCADE/Express_Enum.hxx +include/OpenCASCADE/Express_Field.hxx +include/OpenCASCADE/Express_HSequenceOfEntity.hxx +include/OpenCASCADE/Express_HSequenceOfField.hxx +include/OpenCASCADE/Express_HSequenceOfItem.hxx +include/OpenCASCADE/Express_Integer.hxx +include/OpenCASCADE/Express_Item.hxx +include/OpenCASCADE/Express_List.hxx +include/OpenCASCADE/Express_Logical.hxx +include/OpenCASCADE/Express_NamedType.hxx +include/OpenCASCADE/Express_Number.hxx +include/OpenCASCADE/Express_PredefinedType.hxx +include/OpenCASCADE/Express_Real.hxx +include/OpenCASCADE/Express_Reference.hxx +include/OpenCASCADE/Express_Schema.hxx +include/OpenCASCADE/Express_Select.hxx +include/OpenCASCADE/Express_SequenceOfEntity.hxx +include/OpenCASCADE/Express_SequenceOfField.hxx +include/OpenCASCADE/Express_SequenceOfItem.hxx +include/OpenCASCADE/Express_Set.hxx +include/OpenCASCADE/Express_String.hxx +include/OpenCASCADE/Express_Type.hxx include/OpenCASCADE/Extrema_Array1OfPOnCurv.hxx include/OpenCASCADE/Extrema_Array1OfPOnCurv2d.hxx include/OpenCASCADE/Extrema_Array1OfPOnSurf.hxx @@ -20639,10 +21099,13 @@ include/OpenCASCADE/Geom2dAdaptor.hxx include/OpenCASCADE/Geom2dAdaptor_Curve.hxx include/OpenCASCADE/Geom2dConvert.hxx +include/OpenCASCADE/Geom2dConvert_ApproxArcsSegments.hxx include/OpenCASCADE/Geom2dConvert_ApproxCurve.hxx include/OpenCASCADE/Geom2dConvert_BSplineCurveKnotSplitting.hxx include/OpenCASCADE/Geom2dConvert_BSplineCurveToBezierCurve.hxx include/OpenCASCADE/Geom2dConvert_CompCurveToBSplineCurve.hxx +include/OpenCASCADE/Geom2dConvert_PPoint.hxx +include/OpenCASCADE/Geom2dConvert_SequenceOfPPoint.hxx include/OpenCASCADE/Geom2dEvaluator.hxx include/OpenCASCADE/Geom2dEvaluator_Curve.hxx include/OpenCASCADE/Geom2dEvaluator_OffsetCurve.hxx @@ -20773,6 +21236,12 @@ include/OpenCASCADE/GeomConvert_CompBezierSurfacesToBSplineSurface.hxx include/OpenCASCADE/GeomConvert_CompBezierSurfacesToBSplineSurface.lxx include/OpenCASCADE/GeomConvert_CompCurveToBSplineCurve.hxx +include/OpenCASCADE/GeomConvert_ConvType.hxx +include/OpenCASCADE/GeomConvert_CurveToAnaCurve.hxx +include/OpenCASCADE/GeomConvert_FuncConeLSDist.hxx +include/OpenCASCADE/GeomConvert_FuncCylinderLSDist.hxx +include/OpenCASCADE/GeomConvert_FuncSphereLSDist.hxx +include/OpenCASCADE/GeomConvert_SurfToAnaSurf.hxx include/OpenCASCADE/GeomConvert_Units.hxx include/OpenCASCADE/GeomEvaluator_Curve.hxx include/OpenCASCADE/GeomEvaluator_OffsetCurve.hxx @@ -21059,6 +21528,7 @@ include/OpenCASCADE/Graphic3d_CullingTool.hxx include/OpenCASCADE/Graphic3d_DataStructureManager.hxx include/OpenCASCADE/Graphic3d_DiagnosticInfo.hxx +include/OpenCASCADE/Graphic3d_DisplayPriority.hxx include/OpenCASCADE/Graphic3d_FrameStats.hxx include/OpenCASCADE/Graphic3d_FrameStatsCounter.hxx include/OpenCASCADE/Graphic3d_FrameStatsData.hxx @@ -21122,6 +21592,7 @@ include/OpenCASCADE/Graphic3d_Texture2D.hxx include/OpenCASCADE/Graphic3d_Texture2Dmanual.hxx include/OpenCASCADE/Graphic3d_Texture2Dplane.hxx +include/OpenCASCADE/Graphic3d_Texture3D.hxx include/OpenCASCADE/Graphic3d_TextureEnv.hxx include/OpenCASCADE/Graphic3d_TextureMap.hxx include/OpenCASCADE/Graphic3d_TextureParams.hxx @@ -21525,6 +21996,8 @@ include/OpenCASCADE/IGESBasic_ToolSingularSubfigure.hxx include/OpenCASCADE/IGESBasic_ToolSubfigureDef.hxx include/OpenCASCADE/IGESCAFControl.hxx +include/OpenCASCADE/IGESCAFControl_ConfigurationNode.hxx +include/OpenCASCADE/IGESCAFControl_Provider.hxx include/OpenCASCADE/IGESCAFControl_Reader.hxx include/OpenCASCADE/IGESCAFControl_Writer.hxx include/OpenCASCADE/IGESControl_ActorWrite.hxx @@ -22056,7 +22529,6 @@ include/OpenCASCADE/IntCurvesFace_Intersector.hxx include/OpenCASCADE/IntCurvesFace_Intersector.lxx include/OpenCASCADE/IntCurvesFace_ShapeIntersector.hxx -include/OpenCASCADE/IntCurvesFace_ShapeIntersector.lxx include/OpenCASCADE/IntImpParGen.hxx include/OpenCASCADE/IntImpParGen_ImpParTool.gxx include/OpenCASCADE/IntImpParGen_ImpTool.hxx @@ -22116,7 +22588,6 @@ include/OpenCASCADE/IntPatch_PrmPrmIntersection.hxx include/OpenCASCADE/IntPatch_PrmPrmIntersection.lxx include/OpenCASCADE/IntPatch_PrmPrmIntersection_T3Bits.hxx -include/OpenCASCADE/IntPatch_PrmPrmIntersection_T3Bits.lxx include/OpenCASCADE/IntPatch_RLine.hxx include/OpenCASCADE/IntPatch_RLine.lxx include/OpenCASCADE/IntPatch_RstInt.hxx @@ -22755,15 +23226,7 @@ include/OpenCASCADE/OSD_Exception_ACCESS_VIOLATION.hxx include/OpenCASCADE/OSD_Exception_ARRAY_BOUNDS_EXCEEDED.hxx include/OpenCASCADE/OSD_Exception_CTRL_BREAK.hxx -include/OpenCASCADE/OSD_Exception_FLT_DENORMAL_OPERAND.hxx -include/OpenCASCADE/OSD_Exception_FLT_DIVIDE_BY_ZERO.hxx -include/OpenCASCADE/OSD_Exception_FLT_INEXACT_RESULT.hxx -include/OpenCASCADE/OSD_Exception_FLT_INVALID_OPERATION.hxx -include/OpenCASCADE/OSD_Exception_FLT_OVERFLOW.hxx -include/OpenCASCADE/OSD_Exception_FLT_STACK_CHECK.hxx -include/OpenCASCADE/OSD_Exception_FLT_UNDERFLOW.hxx include/OpenCASCADE/OSD_Exception_ILLEGAL_INSTRUCTION.hxx -include/OpenCASCADE/OSD_Exception_INT_DIVIDE_BY_ZERO.hxx include/OpenCASCADE/OSD_Exception_INT_OVERFLOW.hxx include/OpenCASCADE/OSD_Exception_INVALID_DISPOSITION.hxx include/OpenCASCADE/OSD_Exception_IN_PAGE_ERROR.hxx @@ -22865,6 +23328,8 @@ include/OpenCASCADE/OpenGl_GlCore45.hxx include/OpenCASCADE/OpenGl_GlCore46.hxx include/OpenCASCADE/OpenGl_GlFunctions.hxx +include/OpenCASCADE/OpenGl_GlNative.hxx +include/OpenCASCADE/OpenGl_GlTypes.hxx include/OpenCASCADE/OpenGl_GraduatedTrihedron.hxx include/OpenCASCADE/OpenGl_GraphicDriver.hxx include/OpenCASCADE/OpenGl_GraphicDriverFactory.hxx @@ -22913,6 +23378,7 @@ include/OpenCASCADE/OpenGl_View.hxx include/OpenCASCADE/OpenGl_Window.hxx include/OpenCASCADE/OpenGl_Workspace.hxx +include/OpenCASCADE/OpenGl_glext.h include/OpenCASCADE/OpenGl_khrplatform.h include/OpenCASCADE/PCDM.hxx include/OpenCASCADE/PCDM_BaseDriverPointer.hxx @@ -23114,7 +23580,6 @@ include/OpenCASCADE/QANCollection_ListIteratorOfListOfPnt.hxx include/OpenCASCADE/QANCollection_ListOfPnt.hxx include/OpenCASCADE/Quantity_Array1OfColor.hxx -include/OpenCASCADE/Quantity_Array2OfColor.hxx include/OpenCASCADE/Quantity_Color.hxx include/OpenCASCADE/Quantity_ColorHasher.hxx include/OpenCASCADE/Quantity_ColorRGBA.hxx @@ -23125,10 +23590,11 @@ include/OpenCASCADE/Quantity_NameOfColor.hxx include/OpenCASCADE/Quantity_Period.hxx include/OpenCASCADE/Quantity_PeriodDefinitionError.hxx -include/OpenCASCADE/Quantity_PhysicalQuantity.hxx include/OpenCASCADE/Quantity_TypeOfColor.hxx include/OpenCASCADE/RWGltf_CafReader.hxx include/OpenCASCADE/RWGltf_CafWriter.hxx +include/OpenCASCADE/RWGltf_ConfigurationNode.hxx +include/OpenCASCADE/RWGltf_DracoParameters.hxx include/OpenCASCADE/RWGltf_GltfAccessor.hxx include/OpenCASCADE/RWGltf_GltfAccessorCompType.hxx include/OpenCASCADE/RWGltf_GltfAccessorLayout.hxx @@ -23147,6 +23613,7 @@ include/OpenCASCADE/RWGltf_GltfSceneNodeMap.hxx include/OpenCASCADE/RWGltf_MaterialCommon.hxx include/OpenCASCADE/RWGltf_MaterialMetallicRoughness.hxx +include/OpenCASCADE/RWGltf_Provider.hxx include/OpenCASCADE/RWGltf_TriangulationReader.hxx include/OpenCASCADE/RWGltf_WriterTrsfFormat.hxx include/OpenCASCADE/RWHeaderSection.hxx @@ -23168,15 +23635,21 @@ include/OpenCASCADE/RWObj.hxx include/OpenCASCADE/RWObj_CafReader.hxx include/OpenCASCADE/RWObj_CafWriter.hxx +include/OpenCASCADE/RWObj_ConfigurationNode.hxx include/OpenCASCADE/RWObj_Material.hxx include/OpenCASCADE/RWObj_MtlReader.hxx include/OpenCASCADE/RWObj_ObjMaterialMap.hxx include/OpenCASCADE/RWObj_ObjWriterContext.hxx +include/OpenCASCADE/RWObj_Provider.hxx include/OpenCASCADE/RWObj_Reader.hxx include/OpenCASCADE/RWObj_SubMesh.hxx include/OpenCASCADE/RWObj_SubMeshReason.hxx include/OpenCASCADE/RWObj_Tools.hxx include/OpenCASCADE/RWObj_TriangulationReader.hxx +include/OpenCASCADE/RWPly_CafWriter.hxx +include/OpenCASCADE/RWPly_ConfigurationNode.hxx +include/OpenCASCADE/RWPly_PlyWriterContext.hxx +include/OpenCASCADE/RWPly_Provider.hxx include/OpenCASCADE/RWStepAP203_RWCcDesignApproval.hxx include/OpenCASCADE/RWStepAP203_RWCcDesignCertification.hxx include/OpenCASCADE/RWStepAP203_RWCcDesignContract.hxx @@ -23789,11 +24262,15 @@ include/OpenCASCADE/RWStepVisual_RWColour.hxx include/OpenCASCADE/RWStepVisual_RWColourRgb.hxx include/OpenCASCADE/RWStepVisual_RWColourSpecification.hxx +include/OpenCASCADE/RWStepVisual_RWComplexTriangulatedFace.hxx +include/OpenCASCADE/RWStepVisual_RWComplexTriangulatedSurfaceSet.hxx include/OpenCASCADE/RWStepVisual_RWCompositeText.hxx include/OpenCASCADE/RWStepVisual_RWCompositeTextWithExtent.hxx include/OpenCASCADE/RWStepVisual_RWContextDependentInvisibility.hxx include/OpenCASCADE/RWStepVisual_RWContextDependentOverRidingStyledItem.hxx include/OpenCASCADE/RWStepVisual_RWCoordinatesList.hxx +include/OpenCASCADE/RWStepVisual_RWCubicBezierTessellatedEdge.hxx +include/OpenCASCADE/RWStepVisual_RWCubicBezierTriangulatedFace.hxx include/OpenCASCADE/RWStepVisual_RWCurveStyle.hxx include/OpenCASCADE/RWStepVisual_RWCurveStyleFont.hxx include/OpenCASCADE/RWStepVisual_RWCurveStyleFontPattern.hxx @@ -23824,6 +24301,8 @@ include/OpenCASCADE/RWStepVisual_RWPresentationStyleByContext.hxx include/OpenCASCADE/RWStepVisual_RWPresentationView.hxx include/OpenCASCADE/RWStepVisual_RWPresentedItemRepresentation.hxx +include/OpenCASCADE/RWStepVisual_RWRepositionedTessellatedGeometricSet.hxx +include/OpenCASCADE/RWStepVisual_RWRepositionedTessellatedItem.hxx include/OpenCASCADE/RWStepVisual_RWStyledItem.hxx include/OpenCASCADE/RWStepVisual_RWSurfaceSideStyle.hxx include/OpenCASCADE/RWStepVisual_RWSurfaceStyleBoundary.hxx @@ -23840,15 +24319,28 @@ include/OpenCASCADE/RWStepVisual_RWTemplate.hxx include/OpenCASCADE/RWStepVisual_RWTemplateInstance.hxx include/OpenCASCADE/RWStepVisual_RWTessellatedAnnotationOccurrence.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedConnectingEdge.hxx include/OpenCASCADE/RWStepVisual_RWTessellatedCurveSet.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedEdge.hxx include/OpenCASCADE/RWStepVisual_RWTessellatedGeometricSet.hxx include/OpenCASCADE/RWStepVisual_RWTessellatedItem.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedPointSet.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedShapeRepresentation.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedShell.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedSolid.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedStructuredItem.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedVertex.hxx +include/OpenCASCADE/RWStepVisual_RWTessellatedWire.hxx include/OpenCASCADE/RWStepVisual_RWTextLiteral.hxx include/OpenCASCADE/RWStepVisual_RWTextStyle.hxx include/OpenCASCADE/RWStepVisual_RWTextStyleForDefinedFont.hxx include/OpenCASCADE/RWStepVisual_RWTextStyleWithBoxCharacteristics.hxx +include/OpenCASCADE/RWStepVisual_RWTriangulatedFace.hxx include/OpenCASCADE/RWStepVisual_RWViewVolume.hxx include/OpenCASCADE/RWStl.hxx +include/OpenCASCADE/RWStl_ConfigurationNode.hxx +include/OpenCASCADE/RWStl_Provider.hxx include/OpenCASCADE/RWStl_Reader.hxx include/OpenCASCADE/Resource_ConvertUnicode.hxx include/OpenCASCADE/Resource_DataMapOfAsciiStringAsciiString.hxx @@ -23859,6 +24351,7 @@ include/OpenCASCADE/Resource_NoSuchResource.hxx include/OpenCASCADE/Resource_Unicode.hxx include/OpenCASCADE/STEPCAFControl_ActorWrite.hxx +include/OpenCASCADE/STEPCAFControl_ConfigurationNode.hxx include/OpenCASCADE/STEPCAFControl_Controller.hxx include/OpenCASCADE/STEPCAFControl_DataMapIteratorOfDataMapOfLabelExternFile.hxx include/OpenCASCADE/STEPCAFControl_DataMapIteratorOfDataMapOfLabelShape.hxx @@ -23875,6 +24368,7 @@ include/OpenCASCADE/STEPCAFControl_ExternFile.hxx include/OpenCASCADE/STEPCAFControl_ExternFile.lxx include/OpenCASCADE/STEPCAFControl_GDTProperty.hxx +include/OpenCASCADE/STEPCAFControl_Provider.hxx include/OpenCASCADE/STEPCAFControl_Reader.hxx include/OpenCASCADE/STEPCAFControl_Writer.hxx include/OpenCASCADE/STEPConstruct.hxx @@ -24009,6 +24503,7 @@ include/OpenCASCADE/ShapeAlgo_ToolContainer.hxx include/OpenCASCADE/ShapeAnalysis.hxx include/OpenCASCADE/ShapeAnalysis_BoxBndTree.hxx +include/OpenCASCADE/ShapeAnalysis_CanonicalRecognition.hxx include/OpenCASCADE/ShapeAnalysis_CheckSmallFace.hxx include/OpenCASCADE/ShapeAnalysis_CheckSmallFace.lxx include/OpenCASCADE/ShapeAnalysis_Curve.hxx @@ -24240,7 +24735,6 @@ include/OpenCASCADE/Standard_Stream.hxx include/OpenCASCADE/Standard_ThreadId.hxx include/OpenCASCADE/Standard_Time.hxx -include/OpenCASCADE/Standard_TooManyUsers.hxx include/OpenCASCADE/Standard_Transient.hxx include/OpenCASCADE/Standard_Type.hxx include/OpenCASCADE/Standard_TypeDef.hxx @@ -25382,6 +25876,8 @@ include/OpenCASCADE/StepToTopoDS_TranslatePolyLoopError.hxx include/OpenCASCADE/StepToTopoDS_TranslateShell.hxx include/OpenCASCADE/StepToTopoDS_TranslateShellError.hxx +include/OpenCASCADE/StepToTopoDS_TranslateSolid.hxx +include/OpenCASCADE/StepToTopoDS_TranslateSolidError.hxx include/OpenCASCADE/StepToTopoDS_TranslateVertex.hxx include/OpenCASCADE/StepToTopoDS_TranslateVertexError.hxx include/OpenCASCADE/StepToTopoDS_TranslateVertexLoop.hxx @@ -25412,6 +25908,8 @@ include/OpenCASCADE/StepVisual_Array1OfRenderingPropertiesSelect.hxx include/OpenCASCADE/StepVisual_Array1OfStyleContextSelect.hxx include/OpenCASCADE/StepVisual_Array1OfSurfaceStyleElementSelect.hxx +include/OpenCASCADE/StepVisual_Array1OfTessellatedEdgeOrVertex.hxx +include/OpenCASCADE/StepVisual_Array1OfTessellatedStructuredItem.hxx include/OpenCASCADE/StepVisual_Array1OfTextOrCharacter.hxx include/OpenCASCADE/StepVisual_BackgroundColour.hxx include/OpenCASCADE/StepVisual_BoxCharacteristicSelect.hxx @@ -25432,11 +25930,15 @@ include/OpenCASCADE/StepVisual_Colour.hxx include/OpenCASCADE/StepVisual_ColourRgb.hxx include/OpenCASCADE/StepVisual_ColourSpecification.hxx +include/OpenCASCADE/StepVisual_ComplexTriangulatedFace.hxx +include/OpenCASCADE/StepVisual_ComplexTriangulatedSurfaceSet.hxx include/OpenCASCADE/StepVisual_CompositeText.hxx include/OpenCASCADE/StepVisual_CompositeTextWithExtent.hxx include/OpenCASCADE/StepVisual_ContextDependentInvisibility.hxx include/OpenCASCADE/StepVisual_ContextDependentOverRidingStyledItem.hxx include/OpenCASCADE/StepVisual_CoordinatesList.hxx +include/OpenCASCADE/StepVisual_CubicBezierTessellatedEdge.hxx +include/OpenCASCADE/StepVisual_CubicBezierTriangulatedFace.hxx include/OpenCASCADE/StepVisual_CurveStyle.hxx include/OpenCASCADE/StepVisual_CurveStyleFont.hxx include/OpenCASCADE/StepVisual_CurveStyleFontPattern.hxx @@ -25448,8 +25950,10 @@ include/OpenCASCADE/StepVisual_DraughtingModel.hxx include/OpenCASCADE/StepVisual_DraughtingPreDefinedColour.hxx include/OpenCASCADE/StepVisual_DraughtingPreDefinedCurveFont.hxx +include/OpenCASCADE/StepVisual_EdgeOrCurve.hxx include/OpenCASCADE/StepVisual_ExternallyDefinedCurveFont.hxx include/OpenCASCADE/StepVisual_ExternallyDefinedTextFont.hxx +include/OpenCASCADE/StepVisual_FaceOrSurface.hxx include/OpenCASCADE/StepVisual_FillAreaStyle.hxx include/OpenCASCADE/StepVisual_FillAreaStyleColour.hxx include/OpenCASCADE/StepVisual_FillStyleSelect.hxx @@ -25469,6 +25973,8 @@ include/OpenCASCADE/StepVisual_HArray1OfRenderingPropertiesSelect.hxx include/OpenCASCADE/StepVisual_HArray1OfStyleContextSelect.hxx include/OpenCASCADE/StepVisual_HArray1OfSurfaceStyleElementSelect.hxx +include/OpenCASCADE/StepVisual_HArray1OfTessellatedEdgeOrVertex.hxx +include/OpenCASCADE/StepVisual_HArray1OfTessellatedStructuredItem.hxx include/OpenCASCADE/StepVisual_HArray1OfTextOrCharacter.hxx include/OpenCASCADE/StepVisual_Invisibility.hxx include/OpenCASCADE/StepVisual_InvisibilityContext.hxx @@ -25482,6 +25988,7 @@ include/OpenCASCADE/StepVisual_NullStyle.hxx include/OpenCASCADE/StepVisual_NullStyleMember.hxx include/OpenCASCADE/StepVisual_OverRidingStyledItem.hxx +include/OpenCASCADE/StepVisual_PathOrCompositeCurve.hxx include/OpenCASCADE/StepVisual_PlanarBox.hxx include/OpenCASCADE/StepVisual_PlanarExtent.hxx include/OpenCASCADE/StepVisual_PointStyle.hxx @@ -25504,6 +26011,8 @@ include/OpenCASCADE/StepVisual_PresentedItem.hxx include/OpenCASCADE/StepVisual_PresentedItemRepresentation.hxx include/OpenCASCADE/StepVisual_RenderingPropertiesSelect.hxx +include/OpenCASCADE/StepVisual_RepositionedTessellatedGeometricSet.hxx +include/OpenCASCADE/StepVisual_RepositionedTessellatedItem.hxx include/OpenCASCADE/StepVisual_ShadingSurfaceMethod.hxx include/OpenCASCADE/StepVisual_StyleContextSelect.hxx include/OpenCASCADE/StepVisual_StyledItem.hxx @@ -25525,15 +26034,29 @@ include/OpenCASCADE/StepVisual_Template.hxx include/OpenCASCADE/StepVisual_TemplateInstance.hxx include/OpenCASCADE/StepVisual_TessellatedAnnotationOccurrence.hxx +include/OpenCASCADE/StepVisual_TessellatedConnectingEdge.hxx include/OpenCASCADE/StepVisual_TessellatedCurveSet.hxx +include/OpenCASCADE/StepVisual_TessellatedEdge.hxx +include/OpenCASCADE/StepVisual_TessellatedEdgeOrVertex.hxx +include/OpenCASCADE/StepVisual_TessellatedFace.hxx include/OpenCASCADE/StepVisual_TessellatedGeometricSet.hxx include/OpenCASCADE/StepVisual_TessellatedItem.hxx +include/OpenCASCADE/StepVisual_TessellatedPointSet.hxx +include/OpenCASCADE/StepVisual_TessellatedShapeRepresentation.hxx +include/OpenCASCADE/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.hxx +include/OpenCASCADE/StepVisual_TessellatedShell.hxx +include/OpenCASCADE/StepVisual_TessellatedSolid.hxx +include/OpenCASCADE/StepVisual_TessellatedStructuredItem.hxx +include/OpenCASCADE/StepVisual_TessellatedSurfaceSet.hxx +include/OpenCASCADE/StepVisual_TessellatedVertex.hxx +include/OpenCASCADE/StepVisual_TessellatedWire.hxx include/OpenCASCADE/StepVisual_TextLiteral.hxx include/OpenCASCADE/StepVisual_TextOrCharacter.hxx include/OpenCASCADE/StepVisual_TextPath.hxx include/OpenCASCADE/StepVisual_TextStyle.hxx include/OpenCASCADE/StepVisual_TextStyleForDefinedFont.hxx include/OpenCASCADE/StepVisual_TextStyleWithBoxCharacteristics.hxx +include/OpenCASCADE/StepVisual_TriangulatedFace.hxx include/OpenCASCADE/StepVisual_ViewVolume.hxx include/OpenCASCADE/StlAPI.hxx include/OpenCASCADE/StlAPI_Reader.hxx @@ -26411,6 +26934,7 @@ include/OpenCASCADE/TopoDSToStep_MakeStepFace.hxx include/OpenCASCADE/TopoDSToStep_MakeStepVertex.hxx include/OpenCASCADE/TopoDSToStep_MakeStepWire.hxx +include/OpenCASCADE/TopoDSToStep_MakeTessellatedItem.hxx include/OpenCASCADE/TopoDSToStep_MakeVertexError.hxx include/OpenCASCADE/TopoDSToStep_MakeWireError.hxx include/OpenCASCADE/TopoDSToStep_Root.hxx @@ -26593,6 +27117,7 @@ include/OpenCASCADE/ViewerTest_V3dView.hxx include/OpenCASCADE/Vrml.hxx include/OpenCASCADE/VrmlAPI.hxx +include/OpenCASCADE/VrmlAPI_CafReader.hxx include/OpenCASCADE/VrmlAPI_RepresentationOfShape.hxx include/OpenCASCADE/VrmlAPI_Writer.hxx include/OpenCASCADE/VrmlConverter_Curve.hxx @@ -26645,6 +27170,7 @@ include/OpenCASCADE/Vrml_AsciiTextJustification.hxx include/OpenCASCADE/Vrml_Cone.hxx include/OpenCASCADE/Vrml_ConeParts.hxx +include/OpenCASCADE/Vrml_ConfigurationNode.hxx include/OpenCASCADE/Vrml_Coordinate3.hxx include/OpenCASCADE/Vrml_Cube.hxx include/OpenCASCADE/Vrml_Cylinder.hxx @@ -26670,6 +27196,7 @@ include/OpenCASCADE/Vrml_PerspectiveCamera.hxx include/OpenCASCADE/Vrml_PointLight.hxx include/OpenCASCADE/Vrml_PointSet.hxx +include/OpenCASCADE/Vrml_Provider.hxx include/OpenCASCADE/Vrml_Rotation.hxx include/OpenCASCADE/Vrml_SFImage.hxx include/OpenCASCADE/Vrml_SFImageNumber.hxx @@ -26703,6 +27230,7 @@ include/OpenCASCADE/Wasm_Window.hxx include/OpenCASCADE/XBRepMesh.hxx include/OpenCASCADE/XCAFApp_Application.hxx +include/OpenCASCADE/XCAFDimTolObjects_AngularQualifier.hxx include/OpenCASCADE/XCAFDimTolObjects_DataMapOfToleranceDatum.hxx include/OpenCASCADE/XCAFDimTolObjects_DatumModifWithValue.hxx include/OpenCASCADE/XCAFDimTolObjects_DatumModifiersSequence.hxx @@ -26730,8 +27258,11 @@ include/OpenCASCADE/XCAFDimTolObjects_Tool.hxx include/OpenCASCADE/XCAFDoc.hxx include/OpenCASCADE/XCAFDoc_Area.hxx +include/OpenCASCADE/XCAFDoc_AssemblyGraph.hxx include/OpenCASCADE/XCAFDoc_AssemblyItemId.hxx include/OpenCASCADE/XCAFDoc_AssemblyItemRef.hxx +include/OpenCASCADE/XCAFDoc_AssemblyIterator.hxx +include/OpenCASCADE/XCAFDoc_AssemblyTool.hxx include/OpenCASCADE/XCAFDoc_Centroid.hxx include/OpenCASCADE/XCAFDoc_ClippingPlaneTool.hxx include/OpenCASCADE/XCAFDoc_Color.hxx @@ -26950,7 +27481,6 @@ include/OpenCASCADE/gce_MakeTranslation2d.hxx include/OpenCASCADE/gce_Root.hxx include/OpenCASCADE/gce_Root.lxx -include/OpenCASCADE/glext.h include/OpenCASCADE/gp.hxx include/OpenCASCADE/gp_Ax1.hxx include/OpenCASCADE/gp_Ax2.hxx @@ -27030,7 +27560,6 @@ include/OpenCASCADE/math_FunctionSample.hxx include/OpenCASCADE/math_FunctionSet.hxx include/OpenCASCADE/math_FunctionSetRoot.hxx -include/OpenCASCADE/math_FunctionSetRoot.lxx include/OpenCASCADE/math_FunctionSetWithDerivatives.hxx include/OpenCASCADE/math_FunctionWithDerivative.hxx include/OpenCASCADE/math_Gauss.hxx @@ -27129,6 +27658,9 @@ lib/libTKDraw.so lib/libTKDraw.so.%%VE%% lib/libTKDraw.so.%%VER%% +lib/libTKExpress.so +lib/libTKExpress.so.%%VE%% +lib/libTKExpress.so.%%VER%% lib/libTKFeat.so lib/libTKFeat.so.%%VE%% lib/libTKFeat.so.%%VER%% @@ -27249,6 +27781,12 @@ lib/libTKXCAF.so lib/libTKXCAF.so.%%VE%% lib/libTKXCAF.so.%%VER%% +lib/libTKXDE.so +lib/libTKXDE.so.%%VE%% +lib/libTKXDE.so.%%VER%% +lib/libTKXDECascade.so +lib/libTKXDECascade.so.%%VE%% +lib/libTKXDECascade.so.%%VER%% lib/libTKXDEDRAW.so lib/libTKXDEDRAW.so.%%VE%% lib/libTKXDEDRAW.so.%%VER%% @@ -27322,6 +27860,18 @@ %%DOXYGEN%%%%DOCSDIR%%/html/TStandaloneEXE.png %%DOXYGEN%%%%DOCSDIR%%/html/TStandaloneEXE_open.png %%DOXYGEN%%%%DOCSDIR%%/html/VStudio_projects.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_bndbox.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_highlight.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_shaded.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_shaded_wf.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step2_segments.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_10.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_25.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_disk.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_fin.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step4_highlight1.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step4_highlight2.png +%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step4_highlight3.png %%DOXYGEN%%%%DOCSDIR%%/html/android_image001.png %%DOXYGEN%%%%DOCSDIR%%/html/android_image002.png %%DOXYGEN%%%%DOCSDIR%%/html/android_image003.png @@ -27329,6 +27879,7 @@ %%DOXYGEN%%%%DOCSDIR%%/html/android_image005.png %%DOXYGEN%%%%DOCSDIR%%/html/android_image006.png %%DOXYGEN%%%%DOCSDIR%%/html/bc_s.png +%%DOXYGEN%%%%DOCSDIR%%/html/bc_sd.png %%DOXYGEN%%%%DOCSDIR%%/html/bdwn.png %%DOXYGEN%%%%DOCSDIR%%/html/boolean_image001.svg %%DOXYGEN%%%%DOCSDIR%%/html/boolean_image002.svg @@ -27528,6 +28079,7 @@ %%DOXYGEN%%%%DOCSDIR%%/html/dir_7213451623ebc8f57baebbaa4f60ebb3.html %%DOXYGEN%%%%DOCSDIR%%/html/dir_73ce5c9a83496f918bc27cfc0c0bab85.html %%DOXYGEN%%%%DOCSDIR%%/html/dir_822536ea24b5959c838224da8955f7be.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_8ceb53fef4c3488d54faa50bd2cab870.html %%DOXYGEN%%%%DOCSDIR%%/html/dir_923c025a01c94bb80cd8c1563d3c1d6a.html %%DOXYGEN%%%%DOCSDIR%%/html/dir_946e4c44aab0fbcf9412d2bafa83545e.html %%DOXYGEN%%%%DOCSDIR%%/html/dir_9ccbc3cafcc13ea4aec0627387d4d02d.html @@ -27548,6 +28100,7 @@ %%DOXYGEN%%%%DOCSDIR%%/html/display_additional_presentation.png %%DOXYGEN%%%%DOCSDIR%%/html/display_main_presentation.png %%DOXYGEN%%%%DOCSDIR%%/html/doc.png +%%DOXYGEN%%%%DOCSDIR%%/html/docd.png %%DOXYGEN%%%%DOCSDIR%%/html/documentation_folders.png %%DOXYGEN%%%%DOCSDIR%%/html/documentation_miktex.png %%DOXYGEN%%%%DOCSDIR%%/html/documentation_test_image.svg @@ -27577,9 +28130,6 @@ %%DOXYGEN%%%%DOCSDIR%%/html/glue_options_image005.png %%DOXYGEN%%%%DOCSDIR%%/html/iges_image003.png %%DOXYGEN%%%%DOCSDIR%%/html/iges_image004.png -%%DOXYGEN%%%%DOCSDIR%%/html/index.hhc -%%DOXYGEN%%%%DOCSDIR%%/html/index.hhk -%%DOXYGEN%%%%DOCSDIR%%/html/index.hhp %%DOXYGEN%%%%DOCSDIR%%/html/index.html %%DOXYGEN%%%%DOCSDIR%%/html/jquery.js %%DOXYGEN%%%%DOCSDIR%%/html/messageview_dump_panel.png @@ -27709,8 +28259,10 @@ %%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_opt_obb_125K.png %%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_pca_obb_125K.png %%DOXYGEN%%%%DOCSDIR%%/html/nav_f.png +%%DOXYGEN%%%%DOCSDIR%%/html/nav_fd.png %%DOXYGEN%%%%DOCSDIR%%/html/nav_g.png %%DOXYGEN%%%%DOCSDIR%%/html/nav_h.png +%%DOXYGEN%%%%DOCSDIR%%/html/nav_hd.png %%DOXYGEN%%%%DOCSDIR%%/html/navtree.css %%DOXYGEN%%%%DOCSDIR%%/html/navtree.js %%DOXYGEN%%%%DOCSDIR%%/html/navtreedata.js @@ -27763,6 +28315,7 @@ %%DOXYGEN%%%%DOCSDIR%%/html/occt_contribution__tests.html %%DOXYGEN%%%%DOCSDIR%%/html/occt_logo.png %%DOXYGEN%%%%DOCSDIR%%/html/occt_public_license.html +%%DOXYGEN%%%%DOCSDIR%%/html/occt_samples_glfw.html %%DOXYGEN%%%%DOCSDIR%%/html/occt_samples_ios_uikit.html %%DOXYGEN%%%%DOCSDIR%%/html/occt_samples_webgl.html %%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__foundation_classes.html @@ -27910,6 +28463,7 @@ %%DOXYGEN%%%%DOCSDIR%%/html/specification__brep_format.html %%DOXYGEN%%%%DOCSDIR%%/html/specification__pbr_math.html %%DOXYGEN%%%%DOCSDIR%%/html/splitbar.png +%%DOXYGEN%%%%DOCSDIR%%/html/splitbard.png %%DOXYGEN%%%%DOCSDIR%%/html/step_image002.png %%DOXYGEN%%%%DOCSDIR%%/html/step_image003.png %%DOXYGEN%%%%DOCSDIR%%/html/step_image004.png @@ -27917,9 +28471,13 @@ %%DOXYGEN%%%%DOCSDIR%%/html/sync_off.png %%DOXYGEN%%%%DOCSDIR%%/html/sync_on.png %%DOXYGEN%%%%DOCSDIR%%/html/tab_a.png +%%DOXYGEN%%%%DOCSDIR%%/html/tab_ad.png %%DOXYGEN%%%%DOCSDIR%%/html/tab_b.png +%%DOXYGEN%%%%DOCSDIR%%/html/tab_bd.png %%DOXYGEN%%%%DOCSDIR%%/html/tab_h.png +%%DOXYGEN%%%%DOCSDIR%%/html/tab_hd.png %%DOXYGEN%%%%DOCSDIR%%/html/tab_s.png +%%DOXYGEN%%%%DOCSDIR%%/html/tab_sd.png %%DOXYGEN%%%%DOCSDIR%%/html/tabs.css %%DOXYGEN%%%%DOCSDIR%%/html/technical_overview_schema.png %%DOXYGEN%%%%DOCSDIR%%/html/tests_image001.png @@ -27950,6 +28508,7 @@ %%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image017.png %%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image018.png %%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image019.png +%%DOXYGEN%%%%DOCSDIR%%/html/tutorials__ais_object.html %%DOXYGEN%%%%DOCSDIR%%/html/user_guides.html %%DOXYGEN%%%%DOCSDIR%%/html/user_guides.js %%DOXYGEN%%%%DOCSDIR%%/html/view_frustum.png