git: 6ef29aeb4326 - main - cad/opencascade: upgrade to 7.9.0

From: Thierry Thomas <thierry_at_FreeBSD.org>
Date: Sun, 06 Apr 2025 19:57:26 UTC
The branch main has been updated by thierry:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6ef29aeb43268ad63f850d9f7dc10f0a79e4b21b

commit 6ef29aeb43268ad63f850d9f7dc10f0a79e4b21b
Author:     Thierry Thomas <thierry@FreeBSD.org>
AuthorDate: 2025-04-04 19:52:52 +0000
Commit:     Thierry Thomas <thierry@FreeBSD.org>
CommitDate: 2025-04-06 19:57:19 +0000

    cad/opencascade: upgrade to 7.9.0
    
    Release notes at https://github.com/Open-Cascade-SAS/OCCT/releases/tag/V7_9_0
---
 cad/opencascade/Makefile                           |   32 +-
 cad/opencascade/distinfo                           |    6 +-
 cad/opencascade/files/patch-CMakeLists.txt         |   23 +-
 .../files/patch-adm_cmake_occt__macros.cmake       |   33 +-
 .../patch-src_IVtkDraw_IVtkDraw__Interactor.cxx    |   12 +-
 ...c_STEPConstruct_STEPConstruct__AP203Context.cxx |   14 +-
 .../patch-src_Standard_Standard__CLocaleSentry.hxx |   10 +-
 .../files/patch-src_Standard_Standard__CString.cxx |    6 +-
 .../files/patch-src_StdPrs_StdPrs__BRepFont.cxx    |   11 -
 cad/opencascade/pkg-plist                          | 1259 +++++---------------
 10 files changed, 343 insertions(+), 1063 deletions(-)

diff --git a/cad/opencascade/Makefile b/cad/opencascade/Makefile
index 44811ddca835..8e6c0557568c 100644
--- a/cad/opencascade/Makefile
+++ b/cad/opencascade/Makefile
@@ -1,7 +1,6 @@
 PORTNAME=	opencascade
 DISTVERSIONPREFIX=	V
-DISTVERSION=	7_8_1
-PORTREVISION=	5
+DISTVERSION=	7_9_0
 CATEGORIES=	cad science
 DIST_SUBDIR=	${PORTNAME}-${DISTVERSION}
 
@@ -26,8 +25,7 @@ LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig	\
 		libvtksys-${VTK_VER}.so:math/vtk${VTK_VER:R}
 RUN_DEPENDS=	bash:shells/bash
 
-# Check ${WRKSRC}/dox/overview/overview.md
-# and ${WRKSRC}/dox/dev_guides/building
+# Check ${WRKSRC}/dox/build/build_occt/building_occt.md
 USES=		alias:10 cmake compiler:c++14-lang eigen:3 gettext-runtime	\
 		gl gnome localbase python qt:5 shebangfix tk xorg
 USE_XORG=	ice sm x11 xau xcb xdmcp xext xft xi xmu xrender xscrnsaver xt
@@ -42,9 +40,7 @@ GH_PROJECT=	OCCT
 SHEBANG_FILES=	adm/templates/*.sh	\
 		adm/templates/*.sh.in	\
 		adm/templates/*.sh.main	\
-		adm/genconf.tcl		\
-		adm/start.tcl		\
-		gendoc
+		adm/*.tcl
 ENVSH=		adm/templates/env.sh
 
 OPTIONS_DEFINE=	DOCS DOXYGEN FFMPEG VIS
@@ -159,27 +155,33 @@ pre-everything::
 	@${ECHO_MSG} "2.6 Gb of free disk space in build area!"
 	@${ECHO_MSG}
 
-pre-patch:
-	${REINPLACE_CMD} 's|<malloc.h>|<stdlib.h>|' \
-		${WRKSRC}/src/BRepMesh/delabella.cpp\
-		${WRKSRC}/src/OSD/OSD_MemInfo.cxx
-
 pre-configure:
-	${REINPLACE_CMD} -e 's|tclsh|${TCLSH}|' ${WRKSRC}/gendoc
-	${REINPLACE_CMD} -e 's|/usr/bin/|${LOCALBASE}/bin/|' ${WRKSRC}/adm/genconfdeps.tcl
+	${REINPLACE_CMD} 's|<malloc.h>|<stdlib.h>|'	\
+		${WRKSRC}/src/BRepMesh/delabella.cpp	\
+		${WRKSRC}/src/OSD/OSD_MemInfo.cxx
+	${REINPLACE_CMD} -e 's|tclsh|${TCLSH}|' ${WRKSRC}/adm/gendoc
+	${REINPLACE_CMD} -e 's|/usr/bin/|${LOCALBASE}/bin/|'	\
+		${WRKSRC}/adm/vcpkg/ports/ffmpeg/portfile.cmake
 	${GREP} -rl x86_64 ${WRKSRC} | ${XARGS} ${REINPLACE_CMD}	\
 		-e 's|x86_64|amd64|'
 .for es in ${ENVSH}
 	${REINPLACE_CMD} -e 's|lin|bsd|' ${WRKSRC}/${es}
 .endfor
 
+post-configure:
+	${REINPLACE_CMD} -e '/Standard_Version.hxx/s|${BUILD_WRKSRC}/||'	\
+		${BUILD_WRKSRC}/cmake_install.cmake
+
 post-stage:
 	${MKDIR} ${STAGEDIR}${PREFIX}/lib/cmake/OpenCASCADE
 	${MV} ${STAGEDIR}${PREFIX}/lib/cmake/*.cmake	\
 		${STAGEDIR}${PREFIX}/lib/cmake/OpenCASCADE
+	${REINPLACE_CMD} -e '/Standard_Version.hxx/s|${STAGEDIR}${PREFIX}/||'	\
+		-e '/^@dir/d' ${WRKDIR}/.PLIST.mktmp
 
 post-install:
-	${MV} ${STAGEDIR}${OCCROOT}/bin/DRAWEXE-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/DRAWEXE
+	${MV} ${STAGEDIR}${OCCROOT}/bin/DRAWEXE-${PORTVERSION}	\
+		${STAGEDIR}${PREFIX}/bin/DRAWEXE
 	${RLN} ${STAGEDIR}${PREFIX}/bin/DRAWEXE ${STAGEDIR}${OCCROOT}/bin
 
 post-install-DOXYGEN-on:
diff --git a/cad/opencascade/distinfo b/cad/opencascade/distinfo
index ec36c4e5d75f..f460c041e93f 100644
--- a/cad/opencascade/distinfo
+++ b/cad/opencascade/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1717273673
-SHA256 (opencascade-7_8_1/Open-Cascade-SAS-OCCT-V7_8_1_GH0.tar.gz) = 7321af48c34dc253bf8aae3f0430e8cb10976961d534d8509e72516978aa82f5
-SIZE (opencascade-7_8_1/Open-Cascade-SAS-OCCT-V7_8_1_GH0.tar.gz) = 48432051
+TIMESTAMP = 1743767843
+SHA256 (opencascade-7_9_0/Open-Cascade-SAS-OCCT-V7_9_0_GH0.tar.gz) = 151b7a522ba8220aed3009e440246abbaf2ffec42672c37e9390096f7f2c098d
+SIZE (opencascade-7_9_0/Open-Cascade-SAS-OCCT-V7_9_0_GH0.tar.gz) = 48572763
diff --git a/cad/opencascade/files/patch-CMakeLists.txt b/cad/opencascade/files/patch-CMakeLists.txt
index e3a13291a5cb..244ffaa4f286 100644
--- a/cad/opencascade/files/patch-CMakeLists.txt
+++ b/cad/opencascade/files/patch-CMakeLists.txt
@@ -1,24 +1,15 @@
---- CMakeLists.txt.orig	2023-12-04 15:53:08 UTC
+--- CMakeLists.txt.orig	2025-02-17 22:00:23 UTC
 +++ CMakeLists.txt
-@@ -1015,7 +1015,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}"
--            PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
-+            PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
-   endif()
- 
-   # copy draw script to CMake binary folder
-@@ -1031,7 +1031,7 @@ endif()
+@@ -1114,7 +1114,7 @@ endif()
  endif()
  
-  # change custom.bat/sh
--if (EXISTS "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}")
+ # validating custom.bat/sh for changes
+-if (EXISTS "${CMAKE_BINARY_DIR}/custom.${SCRIPT_EXT}" AND EXISTS "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}")
 +if (FALSE)
    file (READ "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" CUSTOM_CONTENT)
- 
-   set (CUSTOM_CONTENT "${CUSTOM_CONTENT} ${ADDITIONAL_CUSTOM_CONTENT}")
-@@ -1275,7 +1275,7 @@ install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONF
+   string(FIND "${CUSTOM_CONTENT}" "${ADDITIONAL_CUSTOM_CONTENT}" pos)
+   if (pos EQUAL -1)
+@@ -1359,7 +1359,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)")
diff --git a/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake b/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake
index 20e1fb41c6fc..5cf175f55e81 100644
--- a/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake
+++ b/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake
@@ -1,6 +1,6 @@
---- adm/cmake/occt_macros.cmake.orig	2023-12-04 15:53:08 UTC
+--- adm/cmake/occt_macros.cmake.orig	2025-02-17 22:00:23 UTC
 +++ adm/cmake/occt_macros.cmake
-@@ -47,7 +47,7 @@ macro (OCCT_MAKE_OS_WITH_BITNESS)
+@@ -68,7 +68,7 @@ macro (OCCT_MAKE_OS_WITH_BITNESS)
    elseif(APPLE)
      set (OS_WITH_BIT "mac${COMPILER_BITNESS}")
    else()
@@ -9,16 +9,25 @@
    endif()
  endmacro()
  
-@@ -338,7 +338,7 @@ macro (COLLECT_AND_INSTALL_OCCT_HEADER_FILES ROOT_TARG
-     configure_file ("${TEMPLATE_HEADER_PATH}" "${ROOT_TARGET_OCCT_DIR}/${OCCT_INSTALL_DIR_PREFIX}/${HEADER_FILE_NAME}" @ONLY)
-   endforeach()
-   
--  install (FILES ${OCCT_HEADER_FILES_COMPLETE} DESTINATION "${INSTALL_DIR}/${OCCT_INSTALL_DIR_PREFIX}")
-+  install (FILES ${OCCT_HEADER_FILES_COMPLETE} DESTINATION "${INSTALL_DIR_INCLUDE}")
-   
-   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)
+@@ -478,7 +478,7 @@ function (COLLECT_AND_INSTALL_OCCT_HEADER_FILES THE_RO
+ 
+   set (OCCT_HEADER_FILES_INSTALLATION ${OCCT_HEADER_FILES_COMPLETE})
+   list (FILTER OCCT_HEADER_FILES_INSTALLATION INCLUDE REGEX ".*[.](h|lxx)")
+-  install (FILES ${OCCT_HEADER_FILES_INSTALLATION} DESTINATION "${INSTALL_DIR}/${THE_OCCT_INSTALL_DIR_PREFIX}")
++  install (FILES ${OCCT_HEADER_FILES_INSTALLATION} DESTINATION "${THE_OCCT_INSTALL_DIR_PREFIX}")
+ endfunction()
+ 
+ # Macro to configure and install Standard_Version.hxx file
+@@ -489,7 +489,7 @@ macro (CONFIGURE_AND_INSTALL_VERSION_HEADER)
+     set(BUILD_OCCT_VERSION_EXT "${OCC_VERSION_STRING_EXT}" CACHE STRING "OCCT Version string. Used only for caching, can't impact on build. For modification of version, please check adm/cmake/version.cmake" FORCE)
+     mark_as_advanced(BUILD_OCCT_VERSION_EXT)
+     string(TIMESTAMP OCCT_VERSION_DATE "%Y-%m-%d" UTC)
+-    OCCT_CONFIGURE_AND_INSTALL ("adm/templates/Standard_Version.hxx.in" "${INSTALL_DIR_INCLUDE}/Standard_Version.hxx" "Standard_Version.hxx" "${INSTALL_DIR}/${INSTALL_DIR_INCLUDE}")
++    OCCT_CONFIGURE_AND_INSTALL ("adm/templates/Standard_Version.hxx.in" "${OCCT_BINARY_DIR}/${INSTALL_DIR_INCLUDE}/Standard_Version.hxx" "Standard_Version.hxx" "${INSTALL_DIR_INCLUDE}")
+   endif()
+ endmacro()
+ 
+@@ -762,12 +762,12 @@ macro (OCCT_UPDATE_TARGET_FILE)
  
    install (CODE
    "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWERCASE)
diff --git a/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx b/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx
index f1c48fad4612..e8dc1691e865 100644
--- a/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx
+++ b/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx
@@ -1,10 +1,10 @@
 - workaround for https://gitlab.kitware.com/vtk/vtk/-/issues/18683
 
---- src/IVtkDraw/IVtkDraw_Interactor.cxx.orig	2023-12-04 15:53:08 UTC
+--- src/IVtkDraw/IVtkDraw_Interactor.cxx.orig	2025-02-17 22:00:23 UTC
 +++ src/IVtkDraw/IVtkDraw_Interactor.cxx
-@@ -26,6 +26,12 @@
- #ifdef AllValues
- #undef AllValues
+@@ -173,6 +173,12 @@ void IVtkDraw_Interactor::Initialize()
+   aSize             = aRenWin->GetSize();
+   aRenWin->Start();
  #endif
 +#ifdef Status
 +#undef Status
@@ -13,5 +13,5 @@
 +#undef Success
 +#endif
  
- // Resolve name collisions with X11 headers
- #ifdef Status
+   this->Enable();
+   this->Size[0] = aSize[0];
diff --git a/cad/opencascade/files/patch-src_STEPConstruct_STEPConstruct__AP203Context.cxx b/cad/opencascade/files/patch-src_STEPConstruct_STEPConstruct__AP203Context.cxx
index e9858d5418a8..1de88faecf0c 100644
--- a/cad/opencascade/files/patch-src_STEPConstruct_STEPConstruct__AP203Context.cxx
+++ b/cad/opencascade/files/patch-src_STEPConstruct_STEPConstruct__AP203Context.cxx
@@ -1,9 +1,9 @@
---- src/STEPConstruct/STEPConstruct_AP203Context.cxx.orig	2022-09-30 11:53:57 UTC
+--- src/STEPConstruct/STEPConstruct_AP203Context.cxx.orig	2025-02-17 22:00:23 UTC
 +++ src/STEPConstruct/STEPConstruct_AP203Context.cxx
-@@ -121,7 +121,15 @@ Handle(StepBasic_DateAndTime) STEPConstruct_AP203Conte
+@@ -110,7 +110,15 @@ Handle(StepBasic_DateAndTime) STEPConstruct_AP203Conte
      long shift = 0;
-     _get_timezone (&shift);
-   #else
+     _get_timezone(&shift);
+ #else
 -    Standard_Integer shift = Standard_Integer(timezone);
 +    #if defined(__FreeBSD__)
 +	struct tm *lt;
@@ -14,6 +14,6 @@
 +    #else
 +      Standard_Integer shift = Standard_Integer(timezone);
 +    #endif
-   #endif
-     Standard_Integer shifth = abs ( shift ) / 3600;
-     Standard_Integer shiftm = ( abs ( shift ) - shifth * 3600 ) / 60;
+ #endif
+     Standard_Integer        shifth = abs(shift) / 3600;
+     Standard_Integer        shiftm = (abs(shift) - shifth * 3600) / 60;
diff --git a/cad/opencascade/files/patch-src_Standard_Standard__CLocaleSentry.hxx b/cad/opencascade/files/patch-src_Standard_Standard__CLocaleSentry.hxx
index 3c44df882800..70991f6e0499 100644
--- a/cad/opencascade/files/patch-src_Standard_Standard__CLocaleSentry.hxx
+++ b/cad/opencascade/files/patch-src_Standard_Standard__CLocaleSentry.hxx
@@ -1,9 +1,9 @@
---- src/Standard/Standard_CLocaleSentry.hxx.orig	2018-05-25 19:14:11 UTC
+--- src/Standard/Standard_CLocaleSentry.hxx.orig	2025-02-17 22:00:23 UTC
 +++ src/Standard/Standard_CLocaleSentry.hxx
-@@ -31,7 +31,7 @@
-   //! Presence of this extension cannot be checked in straightforward way (like (_POSIX_C_SOURCE >= 200809L))
-   //! due to missing such declarations in standard.
-   //! On macOS new functions are declared within "xlocale.h" header (the same is for glibc, but this header has been removed since glibc 2.26).
+@@ -32,7 +32,7 @@
+   //! 200809L)) due to missing such declarations in standard. On macOS new functions are declared
+   //! within "xlocale.h" header (the same is for glibc, but this header has been removed since
+   //! glibc 2.26).
 -  #if defined(__APPLE__)
 +  #if defined(__APPLE__) || (defined(__FreeBSD__) && (__FreeBSD_version > 910000))
      #define OCCT_CLOCALE_POSIX2008
diff --git a/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx b/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx
index 29124adfcc5c..cae3145d4a41 100644
--- a/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx
+++ b/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx
@@ -1,11 +1,11 @@
---- src/Standard/Standard_CString.cxx.orig	2023-12-04 15:53:08 UTC
+--- src/Standard/Standard_CString.cxx.orig	2025-02-17 22:00:23 UTC
 +++ src/Standard/Standard_CString.cxx
-@@ -50,7 +50,7 @@
+@@ -52,7 +52,7 @@
      // 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__)
 -      #error System does not support xlocale. Import/export could be broken if C locale did not specified by application.
 +      #warning System does not support xlocale. Import/export could be broken if C locale did not specified by application.
      #endif
-     #define strtod_l(thePtr, theNextPtr, theLocale)              strtod(thePtr, theNextPtr)
+     #define strtod_l(thePtr, theNextPtr, theLocale) strtod(thePtr, theNextPtr)
    #endif
diff --git a/cad/opencascade/files/patch-src_StdPrs_StdPrs__BRepFont.cxx b/cad/opencascade/files/patch-src_StdPrs_StdPrs__BRepFont.cxx
deleted file mode 100644
index 38f3e922f4ac..000000000000
--- a/cad/opencascade/files/patch-src_StdPrs_StdPrs__BRepFont.cxx
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/StdPrs/StdPrs_BRepFont.cxx.orig	2024-03-31 22:05:22 UTC
-+++ src/StdPrs/StdPrs_BRepFont.cxx
-@@ -457,7 +457,7 @@ Standard_Boolean StdPrs_BRepFont::renderGlyph (const S
-   for (short aContour = 0, aStartIndex = 0; aContour < anOutline->n_contours; ++aContour)
-   {
-     const FT_Vector* aPntList = &anOutline->points[aStartIndex];
--    const char* aTags      = &anOutline->tags[aStartIndex];
-+    const auto* aTags      = &anOutline->tags[aStartIndex];
-     const short anEndIndex = anOutline->contours[aContour];
-     const short aPntsNb    = (anEndIndex - aStartIndex) + 1;
-     aStartIndex = anEndIndex + 1;
diff --git a/cad/opencascade/pkg-plist b/cad/opencascade/pkg-plist
index ee14e52570c9..d31cbd37633b 100644
--- a/cad/opencascade/pkg-plist
+++ b/cad/opencascade/pkg-plist
@@ -497,54 +497,54 @@
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dfbrowser.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dfbrowser_elements.svg
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dfbrowser_selection_in_tree_view.svg
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_0f6ac039eeffaed6f6d478e1ecf86fa1.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_120cd11a65b9c9b8ed202ddbec3fe51a.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_166d9f7a5b4d4aa80e4cd8aadf7bc2b5.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_1ecc3ba743fbe75a0c863829edd341ee.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_26c21b31062f559f285636e7ba9b3a62.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2730500252fe0a9989ee65731c6eba38.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2ec6e2190f041266c142a462c25149ad.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_360f11b8a57e1920cb1301ed2ebca326.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_3e21d1c8b9e141ddc4eff1ca555edf5b.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_3e543a81d77f50aa38f9978c8e976203.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_434c709dc866235cb0f5bcf486bce384.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_478b6a7ba028e5fe789d4f1458eaa581.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_489bacd23b0455509cc480d36353bb6f.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_4eab05161e79a9e5dd45fefcb8c6451b.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_4f5fed6b58676ebaa47cbb345fed42a2.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_55b963f736b1759537ed19907e897536.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_56956559795ea944ccadbc8ff8ec26ee.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5782566a586ac5898b573f1772a06029.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5b82b505fb06e91d541284af3d29364b.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_654206a04ec7643ab70246871acd26fb.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_68b1be08943d5e256435e0df2c82623e.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_6e5943184690695455341a98e6f30c7a.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_7a4f8c73ddbf688f7c981c32d6856f33.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_7ededf9bff5c5f58116bb6dd6d3d16c0.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_82aa6edcebf7b898750fe9f74c5fd87c.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_8e6eba94b01664fb28dcf597d70ac846.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_948d6be6a16c410092e3657554aa6509.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_956679c7b890ba33cba85778e2a959a5.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_99e4f12b0bfabb04cc099180fe3a4698.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_9c4c77d8670f99c9a6f76f92d31a11e8.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_a3500ffd58373db4823672fca150c0c3.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_a594791f5bcba1a25b05735c38ed9f3c.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_aaf003758f429aa89114706605344e2b.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ad2e8c694fd2d09a757ccfcf36a6e2c2.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ad54f49029a5f88d0281e369f99fb8c5.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ada5c17f55918aac05ffc816bb145561.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_b6aa5b10f875a6685b8915334ae6e309.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_b6e2532fee7eaf5588530fdfac63c795.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_bc58e000970bfa916c9dc1a7e59d8e18.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_c5ee713b769f8b31fd82e9fe6f330abb.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_cc9c72aae982bee34b35c769287fdb10.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_de23a04e485a293260c800afb9f8a138.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_e378a44c342c17458e6bb053de079ff6.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_e5094f964cd5a9942098ebfb394726d1.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ebfd865f508722bd17e345d4538b3cea.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ec58226370961992392621f317da0ce9.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_f119309a0523ec25e8fd8f74c1cc5cc3.html
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_f8901fbbd0503c4f60a907b0cab614e2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_01c6b67c6648ffba431f3404b0aeb9a2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_09083eff90027d88cfd993d0bc144f70.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2040d5f743ebc3f6871bcb0b01d2f2a7.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2d309655caad15be942bfd02d8be430e.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2dee8c5ff9f87ed33597cb4088e3a39b.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2e109253acd7a8fa0f44d93ecd3e4ad3.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_321d7fef52cdc7130e760df0eb9f5798.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_357b754f93d1a90260c169555af96ceb.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_42389d5a1cd5e58a196ffcf1ce8d17f6.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_459a2c474fddf7243fa75c0526ca6e0c.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_45c92d1bee23deb87ed9b7f976931559.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_479e80c3c257dba2dd1eb6adf50b0415.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_4e4793715d201c329efdd2a75912c619.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5100653598d8731c86cd80be6c333487.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_51a24d9632640440722ad53c5e498d24.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_54706ce3f85a6c946343f31d17e5eb9a.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5956a760fa24c6dd1c9cf3237e48eb1e.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5b2627fc4d4e9d490e26c15e7e866f85.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5c7211779bd9178fb5d08039a403256e.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_63e833322ea26c31b759eafe0ba8b4a2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_651001f3ccffd581a9a2cb1cc29a5b6f.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_68ff4501a084fbdcdcd745f2b04cc3c2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_694ae5cb61efcbc4e0e6f6e55050fa1d.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_6c998a30d232ab71728556a0c373be94.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_6e655e7557fd2871774bba97d5fa1ecd.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_78de028809637bbb3d81712d43001ed3.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_81177f27315e25fa0dadb6f55e%%PYTHON_SUFFIX%%168.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_862bb8041ed2444339dc87ab35ba5293.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_87d42b99478d60f80c34828f082e9f4c.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_8994dd1baeb685068a5e4528a39880ed.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_91439f0cd85da104d1e436d103efa3bd.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_9325950901d7a39af1a18efbf584aa0d.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_9453b323c57fdd10481e35b7e057d60b.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_9b1dcac46e93da544232048b5f2b99bd.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_9de30bab1f72490001d2a9f5e996e3df.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_9e547e6f5a3dac0497a4bdd6dc3c7ae6.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_a26abc8934c1884d55d9a64a557f8d10.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_b3a68addc232a67925effab899125fb2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_b5dd55ca9418796d5fe2ab9754c3a9ae.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_b7c583f726d32a3e5fa1ec7199ade443.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_bec375fd719a9fd5bbc63421e9558e81.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_bfc01a14eba9c3732ae4f13eab9a2cdd.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_cdd7d3bdf5620460e005c6fa4943e0f0.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_cf793e961dc77b1f7d3d8f8983d065d3.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_d374625e7373aa09c8ce8444a8772807.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_d9fd29723c963556d26ce1a7c5de897c.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_e85210566613de0a2819baa7d90bcc3e.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_fd5722f618a18561993f6e9d8b2cb1f7.html
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/display_additional_presentation.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/display_main_presentation.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/doc.png
@@ -569,8 +569,6 @@
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/foundation_classes_image004.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/foundation_classes_image005.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/foundation_classes_image006.png
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/genconf_linux.png
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/genconf_windows.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image001.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image002.png
 %%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image003.png
@@ -9015,10 +9013,13 @@
 %%OCCROOT%%/tests/bugs/modalg_8/bug32943
 %%OCCROOT%%/tests/bugs/modalg_8/bug32944
 %%OCCROOT%%/tests/bugs/modalg_8/bug32945
+%%OCCROOT%%/tests/bugs/modalg_8/bug32964
 %%OCCROOT%%/tests/bugs/modalg_8/bug32973
 %%OCCROOT%%/tests/bugs/modalg_8/bug33080
 %%OCCROOT%%/tests/bugs/modalg_8/bug33104
 %%OCCROOT%%/tests/bugs/modalg_8/bug33113
+%%OCCROOT%%/tests/bugs/modalg_8/bug33146
+%%OCCROOT%%/tests/bugs/modalg_8/bug33156_2
 %%OCCROOT%%/tests/bugs/modalg_8/bug33165
 %%OCCROOT%%/tests/bugs/modalg_8/bug33173
 %%OCCROOT%%/tests/bugs/modalg_8/bug33179
@@ -9028,11 +9029,19 @@
 %%OCCROOT%%/tests/bugs/modalg_8/bug33247
 %%OCCROOT%%/tests/bugs/modalg_8/bug33306
 %%OCCROOT%%/tests/bugs/modalg_8/bug33311
+%%OCCROOT%%/tests/bugs/modalg_8/bug33328_1
+%%OCCROOT%%/tests/bugs/modalg_8/bug33328_2
 %%OCCROOT%%/tests/bugs/modalg_8/bug33361
 %%OCCROOT%%/tests/bugs/modalg_8/bug33367
 %%OCCROOT%%/tests/bugs/modalg_8/bug33383
 %%OCCROOT%%/tests/bugs/modalg_8/bug33414
 %%OCCROOT%%/tests/bugs/modalg_8/bug33515
+%%OCCROOT%%/tests/bugs/modalg_8/bug33541
+%%OCCROOT%%/tests/bugs/modalg_8/bug33570
+%%OCCROOT%%/tests/bugs/modalg_8/bug33591
+%%OCCROOT%%/tests/bugs/modalg_8/bug33615
+%%OCCROOT%%/tests/bugs/modalg_8/bug33648
+%%OCCROOT%%/tests/bugs/modalg_8/bug33702
 %%OCCROOT%%/tests/bugs/moddata_1/begin
 %%OCCROOT%%/tests/bugs/moddata_1/buc60637
 %%OCCROOT%%/tests/bugs/moddata_1/buc60652_1
@@ -9570,6 +9579,7 @@
 %%OCCROOT%%/tests/bugs/moddata_3/bug33304
 %%OCCROOT%%/tests/bugs/moddata_3/bug33318
 %%OCCROOT%%/tests/bugs/moddata_3/bug33567
+%%OCCROOT%%/tests/bugs/moddata_3/bug33828
 %%OCCROOT%%/tests/bugs/moddata_3/bug5145
 %%OCCROOT%%/tests/bugs/moddata_3/bug599
 %%OCCROOT%%/tests/bugs/parse.rules
@@ -9760,8 +9770,15 @@
 %%OCCROOT%%/tests/bugs/step/bug33317
 %%OCCROOT%%/tests/bugs/step/bug33331
 %%OCCROOT%%/tests/bugs/step/bug33410
+%%OCCROOT%%/tests/bugs/step/bug33487
 %%OCCROOT%%/tests/bugs/step/bug33569
 %%OCCROOT%%/tests/bugs/step/bug33638
+%%OCCROOT%%/tests/bugs/step/bug33657_1
+%%OCCROOT%%/tests/bugs/step/bug33657_2
+%%OCCROOT%%/tests/bugs/step/bug33657_3
+%%OCCROOT%%/tests/bugs/step/bug33657_4
+%%OCCROOT%%/tests/bugs/step/bug33665
+%%OCCROOT%%/tests/bugs/step/bug33815
 %%OCCROOT%%/tests/bugs/step/bug3397
 %%OCCROOT%%/tests/bugs/step/bug348_1
 %%OCCROOT%%/tests/bugs/step/bug348_2
@@ -9935,6 +9952,8 @@
 %%OCCROOT%%/tests/bugs/xde/bug33183_1
 %%OCCROOT%%/tests/bugs/xde/bug33183_2
 %%OCCROOT%%/tests/bugs/xde/bug33183_3
+%%OCCROOT%%/tests/bugs/xde/bug33616
+%%OCCROOT%%/tests/bugs/xde/bug33737
 %%OCCROOT%%/tests/bugs/xde/bug34
 %%OCCROOT%%/tests/bugs/xde/bug3926
 %%OCCROOT%%/tests/bugs/xde/bug394
@@ -11464,6 +11483,7 @@
 %%OCCROOT%%/tests/de/step_5/B5
 %%OCCROOT%%/tests/de/step_5/B6
 %%OCCROOT%%/tests/de/step_5/B7
+%%OCCROOT%%/tests/de/step_5/B8
 %%OCCROOT%%/tests/de_mesh/begin
 %%OCCROOT%%/tests/de_mesh/end
 %%OCCROOT%%/tests/de_mesh/gltf_lateload/begin
@@ -11491,6 +11511,7 @@
 %%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/primitives
 %%OCCROOT%%/tests/de_mesh/gltf_write/spheres
 %%OCCROOT%%/tests/de_mesh/grids.list
 %%OCCROOT%%/tests/de_mesh/obj_read/begin
@@ -12214,6 +12235,7 @@
 %%OCCROOT%%/tests/gdt/import/A3
 %%OCCROOT%%/tests/gdt/import/A4
 %%OCCROOT%%/tests/gdt/import/A5
+%%OCCROOT%%/tests/gdt/import/A6
 %%OCCROOT%%/tests/gdt/import/begin
 %%OCCROOT%%/tests/gdt/import/end
 %%OCCROOT%%/tests/gdt/notes/A1
@@ -12260,6 +12282,7 @@
 %%OCCROOT%%/tests/gdt/presentation/B9
 %%OCCROOT%%/tests/gdt/presentation/C1
 %%OCCROOT%%/tests/gdt/presentation/C2
+%%OCCROOT%%/tests/gdt/presentation/C3
 %%OCCROOT%%/tests/gdt/presentation/begin
 %%OCCROOT%%/tests/gdt/presentation/end
 %%OCCROOT%%/tests/gdt/tolerances/A1
@@ -14588,6 +14611,29 @@
 %%OCCROOT%%/tests/mesh/standard_incmesh_parallel/cases.list
 %%OCCROOT%%/tests/mesh/standard_shading/begin
 %%OCCROOT%%/tests/mesh/standard_shading/cases.list
+%%OCCROOT%%/tests/metadata/begin
+%%OCCROOT%%/tests/metadata/gltf/A1
+%%OCCROOT%%/tests/metadata/gltf/A2
+%%OCCROOT%%/tests/metadata/gltf/A3
+%%OCCROOT%%/tests/metadata/gltf/A4
+%%OCCROOT%%/tests/metadata/gltf/A5
+%%OCCROOT%%/tests/metadata/gltf/A6
+%%OCCROOT%%/tests/metadata/gltf/A7
+%%OCCROOT%%/tests/metadata/gltf/A8
+%%OCCROOT%%/tests/metadata/gltf/A9
+%%OCCROOT%%/tests/metadata/gltf/begin
+%%OCCROOT%%/tests/metadata/gltf/end
+%%OCCROOT%%/tests/metadata/grids.list
+%%OCCROOT%%/tests/metadata/parse.rules
+%%OCCROOT%%/tests/metadata/step/A1
+%%OCCROOT%%/tests/metadata/step/A2
+%%OCCROOT%%/tests/metadata/step/A3
+%%OCCROOT%%/tests/metadata/step/A4
+%%OCCROOT%%/tests/metadata/step/A5
+%%OCCROOT%%/tests/metadata/step/A6
+%%OCCROOT%%/tests/metadata/step/A7
+%%OCCROOT%%/tests/metadata/step/A8
+%%OCCROOT%%/tests/metadata/step/end
 %%OCCROOT%%/tests/mkface/after_extsurf_and_offset/A1
 %%OCCROOT%%/tests/mkface/after_extsurf_and_offset/A2
 %%OCCROOT%%/tests/mkface/after_extsurf_and_offset/A3
@@ -14758,7 +14804,6 @@
 %%OCCROOT%%/tests/mkface/mkplane/A2
 %%OCCROOT%%/tests/mkface/mkplane/bug30878_1
 %%OCCROOT%%/tests/mkface/mkplane/bug30878_2
-%%OCCROOT%%/tests/mkface/mkplane/bug33156
 %%OCCROOT%%/tests/mkface/parse.rules
 %%OCCROOT%%/tests/nproject/base/A1
 %%OCCROOT%%/tests/nproject/base/A2
@@ -18989,10 +19034,15 @@
 %%OCCROOT%%/tests/v3d/bugs/bug319
 %%OCCROOT%%/tests/v3d/bugs/bug31956
 %%OCCROOT%%/tests/v3d/bugs/bug31965
+%%OCCROOT%%/tests/v3d/bugs/bug32073
+%%OCCROOT%%/tests/v3d/bugs/bug32116
 %%OCCROOT%%/tests/v3d/bugs/bug32570
+%%OCCROOT%%/tests/v3d/bugs/bug32752
 %%OCCROOT%%/tests/v3d/bugs/bug32978
 %%OCCROOT%%/tests/v3d/bugs/bug331
 %%OCCROOT%%/tests/v3d/bugs/bug331_1
+%%OCCROOT%%/tests/v3d/bugs/bug33664_1
+%%OCCROOT%%/tests/v3d/bugs/bug33664_2
 %%OCCROOT%%/tests/v3d/bugs/bug344
 %%OCCROOT%%/tests/v3d/bugs/bug349
 %%OCCROOT%%/tests/v3d/bugs/bug364
@@ -19086,10 +19136,12 @@
 %%OCCROOT%%/tests/v3d/light_source/headlight
 %%OCCROOT%%/tests/v3d/light_source/manipulator
 %%OCCROOT%%/tests/v3d/manipulator/bug30669
+%%OCCROOT%%/tests/v3d/manipulator/bug33514
 %%OCCROOT%%/tests/v3d/manipulator/disable_parts
 %%OCCROOT%%/tests/v3d/manipulator/drag_in_2d_view
 %%OCCROOT%%/tests/v3d/manipulator/drag_pan_zoom
 %%OCCROOT%%/tests/v3d/manipulator/dragg
+%%OCCROOT%%/tests/v3d/manipulator/flat
 %%OCCROOT%%/tests/v3d/manipulator/rotate
 %%OCCROOT%%/tests/v3d/manipulator/rotate2
 %%OCCROOT%%/tests/v3d/manipulator/scale
@@ -19148,6 +19200,7 @@
 %%OCCROOT%%/tests/v3d/trihedron/bug25611_1
 %%OCCROOT%%/tests/v3d/trihedron/bug25611_2
 %%OCCROOT%%/tests/v3d/trihedron/bug26754
+%%OCCROOT%%/tests/v3d/trihedron/bug27832
 %%OCCROOT%%/tests/v3d/trihedron/bug27958
 %%OCCROOT%%/tests/v3d/trihedron/bug5988
 %%OCCROOT%%/tests/v3d/trsf/bug23120
@@ -19170,6 +19223,7 @@
 %%OCCROOT%%/tests/v3d/trsf/bug32091
 %%OCCROOT%%/tests/v3d/viewcube/default
 %%OCCROOT%%/tests/v3d/viewcube/largedist
+%%OCCROOT%%/tests/v3d/viewcube/orthopers
 %%OCCROOT%%/tests/v3d/viewcube/style
 %%OCCROOT%%/tests/v3d/viewcube/view
 %%OCCROOT%%/tests/vselect/axis/A1
@@ -19252,6 +19306,10 @@
 %%OCCROOT%%/tests/vselect/bugs/bug28988
 %%OCCROOT%%/tests/vselect/bugs/bug29938
 %%OCCROOT%%/tests/vselect/bugs/bug30218
+%%OCCROOT%%/tests/vselect/bugs/bug30484_1
+%%OCCROOT%%/tests/vselect/bugs/bug30484_2
+%%OCCROOT%%/tests/vselect/bugs/bug30484_3
+%%OCCROOT%%/tests/vselect/bugs/bug30484_4
 %%OCCROOT%%/tests/vselect/bugs/bug30672
 %%OCCROOT%%/tests/vselect/bugs/bug30717
 %%OCCROOT%%/tests/vselect/bugs/bug30824
@@ -19261,6 +19319,7 @@
 %%OCCROOT%%/tests/vselect/bugs/bug31440
 %%OCCROOT%%/tests/vselect/bugs/bug32205
 %%OCCROOT%%/tests/vselect/bugs/bug32482
+%%OCCROOT%%/tests/vselect/bugs/bug32750
 %%OCCROOT%%/tests/vselect/bugs/bug33084
 %%OCCROOT%%/tests/vselect/bugs/bug6652
 %%OCCROOT%%/tests/vselect/bugs/bug7186
@@ -20112,7 +20171,6 @@ include/OpenCASCADE/AdvApprox_EvaluatorFunction.hxx
 include/OpenCASCADE/AdvApprox_PrefAndRec.hxx
 include/OpenCASCADE/AdvApprox_PrefCutting.hxx
 include/OpenCASCADE/AdvApprox_SimpleApprox.hxx
-include/OpenCASCADE/AppBlend_AppSurf.gxx
 include/OpenCASCADE/AppBlend_AppSurf.lxx
 include/OpenCASCADE/AppBlend_Approx.hxx
 include/OpenCASCADE/AppCont_ContMatrices.hxx
@@ -20155,40 +20213,25 @@ include/OpenCASCADE/AppParCurves_Array1OfConstraintCouple.hxx
 include/OpenCASCADE/AppParCurves_Array1OfMultiBSpCurve.hxx
 include/OpenCASCADE/AppParCurves_Array1OfMultiCurve.hxx
 include/OpenCASCADE/AppParCurves_Array1OfMultiPoint.hxx
-include/OpenCASCADE/AppParCurves_BSpFunction.gxx
-include/OpenCASCADE/AppParCurves_BSpGradient.gxx
-include/OpenCASCADE/AppParCurves_BSpGradient_BFGS.gxx
 include/OpenCASCADE/AppParCurves_Constraint.hxx
 include/OpenCASCADE/AppParCurves_ConstraintCouple.hxx
-include/OpenCASCADE/AppParCurves_Function.gxx
-include/OpenCASCADE/AppParCurves_Gradient.gxx
-include/OpenCASCADE/AppParCurves_Gradient_BFGS.gxx
 include/OpenCASCADE/AppParCurves_HArray1OfConstraintCouple.hxx
 include/OpenCASCADE/AppParCurves_HArray1OfMultiBSpCurve.hxx
 include/OpenCASCADE/AppParCurves_HArray1OfMultiCurve.hxx
 include/OpenCASCADE/AppParCurves_HArray1OfMultiPoint.hxx
-include/OpenCASCADE/AppParCurves_LeastSquare.gxx
 include/OpenCASCADE/AppParCurves_MultiBSpCurve.hxx
 include/OpenCASCADE/AppParCurves_MultiCurve.hxx
 include/OpenCASCADE/AppParCurves_MultiPoint.hxx
 include/OpenCASCADE/AppParCurves_MultiPoint.lxx
-include/OpenCASCADE/AppParCurves_ResolConstraint.gxx
 include/OpenCASCADE/AppParCurves_SequenceOfMultiBSpCurve.hxx
 include/OpenCASCADE/AppParCurves_SequenceOfMultiCurve.hxx
 include/OpenCASCADE/AppStdL_Application.hxx
 include/OpenCASCADE/AppStd_Application.hxx
-include/OpenCASCADE/ApproxInt_Approx.gxx
-include/OpenCASCADE/ApproxInt_ImpPrmSvSurfaces.gxx
 include/OpenCASCADE/ApproxInt_KnotTools.hxx
-include/OpenCASCADE/ApproxInt_MultiLine.gxx
 include/OpenCASCADE/ApproxInt_MultiLineTool.lxx
-include/OpenCASCADE/ApproxInt_PrmPrmSvSurfaces.gxx
 include/OpenCASCADE/ApproxInt_SvSurfaces.hxx
 include/OpenCASCADE/Approx_Array1OfAdHSurface.hxx
 include/OpenCASCADE/Approx_Array1OfGTrsf2d.hxx
-include/OpenCASCADE/Approx_BSplComputeLine.gxx
-include/OpenCASCADE/Approx_ComputeCLine.gxx
-include/OpenCASCADE/Approx_ComputeLine.gxx
 include/OpenCASCADE/Approx_Curve2d.hxx
 include/OpenCASCADE/Approx_Curve3d.hxx
 include/OpenCASCADE/Approx_CurveOnSurface.hxx
@@ -20934,7 +20977,6 @@ include/OpenCASCADE/BSplCLib.hxx
 include/OpenCASCADE/BSplCLib.lxx
 include/OpenCASCADE/BSplCLib_Cache.hxx
 include/OpenCASCADE/BSplCLib_CacheParams.hxx
-include/OpenCASCADE/BSplCLib_CurveComputation.gxx
 include/OpenCASCADE/BSplCLib_EvaluatorFunction.hxx
 include/OpenCASCADE/BSplCLib_KnotDistribution.hxx
 include/OpenCASCADE/BSplCLib_MultDistribution.hxx
@@ -20949,6 +20991,7 @@ include/OpenCASCADE/BVH_BoxSet.hxx
 include/OpenCASCADE/BVH_BuildQueue.hxx
 include/OpenCASCADE/BVH_BuildThread.hxx
 include/OpenCASCADE/BVH_Builder.hxx
+include/OpenCASCADE/BVH_Builder3d.hxx
 include/OpenCASCADE/BVH_Constants.hxx
 include/OpenCASCADE/BVH_Distance.hxx
 include/OpenCASCADE/BVH_DistanceField.hxx
@@ -21131,12 +21174,6 @@ include/OpenCASCADE/BlendFunc_Tensor.hxx
 include/OpenCASCADE/BlendFunc_Tensor.lxx
 include/OpenCASCADE/Blend_AppFunction.hxx
 include/OpenCASCADE/Blend_CSFunction.hxx
-include/OpenCASCADE/Blend_CSWalking.gxx
-include/OpenCASCADE/Blend_CSWalking.lxx
-include/OpenCASCADE/Blend_CSWalking_1.gxx
-include/OpenCASCADE/Blend_CSWalking_2.gxx
-include/OpenCASCADE/Blend_CSWalking_3.gxx
-include/OpenCASCADE/Blend_CSWalking_4.gxx
 include/OpenCASCADE/Blend_CurvPointFuncInv.hxx
 include/OpenCASCADE/Blend_DecrochStatus.hxx
 include/OpenCASCADE/Blend_FuncInv.hxx
@@ -21149,12 +21186,6 @@ include/OpenCASCADE/Blend_Status.hxx
 include/OpenCASCADE/Blend_SurfCurvFuncInv.hxx
 include/OpenCASCADE/Blend_SurfPointFuncInv.hxx
 include/OpenCASCADE/Blend_SurfRstFunction.hxx
-include/OpenCASCADE/Blend_Walking.gxx
-include/OpenCASCADE/Blend_Walking.lxx
-include/OpenCASCADE/Blend_Walking_1.gxx
-include/OpenCASCADE/Blend_Walking_2.gxx
-include/OpenCASCADE/Blend_Walking_3.gxx
-include/OpenCASCADE/Blend_Walking_4.gxx
 include/OpenCASCADE/BndLib.hxx
 include/OpenCASCADE/BndLib_Add2dCurve.hxx
 include/OpenCASCADE/BndLib_Add3dCurve.hxx
@@ -21164,11 +21195,9 @@ include/OpenCASCADE/Bnd_Array1OfBox2d.hxx
 include/OpenCASCADE/Bnd_Array1OfSphere.hxx
 include/OpenCASCADE/Bnd_B2d.hxx
 include/OpenCASCADE/Bnd_B2f.hxx
-include/OpenCASCADE/Bnd_B2x.gxx
 include/OpenCASCADE/Bnd_B2x.lxx
 include/OpenCASCADE/Bnd_B3d.hxx
 include/OpenCASCADE/Bnd_B3f.hxx
-include/OpenCASCADE/Bnd_B3x.gxx
 include/OpenCASCADE/Bnd_B3x.lxx
 include/OpenCASCADE/Bnd_BoundSortBox.hxx
 include/OpenCASCADE/Bnd_Box.hxx
@@ -21339,9 +21368,7 @@ include/OpenCASCADE/Convert_PolynomialCosAndSin.hxx
 include/OpenCASCADE/Convert_SequenceOfArray1OfPoles.hxx
 include/OpenCASCADE/Convert_SequenceOfArray1OfPoles2d.hxx
 include/OpenCASCADE/Convert_SphereToBSplineSurface.hxx
-include/OpenCASCADE/Convert_Tools.hxx
 include/OpenCASCADE/Convert_TorusToBSplineSurface.hxx
-include/OpenCASCADE/Convert_TransientShape.hxx
 include/OpenCASCADE/DBRep.hxx
 include/OpenCASCADE/DBRep_DrawableShape.hxx
 include/OpenCASCADE/DBRep_Edge.hxx
@@ -21370,63 +21397,37 @@ include/OpenCASCADE/DDataStd_DrawPresentation.hxx
 include/OpenCASCADE/DDataStd_TreeBrowser.hxx
 include/OpenCASCADE/DDocStd.hxx
 include/OpenCASCADE/DDocStd_DrawDocument.hxx
+include/OpenCASCADE/DEBREP_ConfigurationNode.hxx
+include/OpenCASCADE/DEBREP_Provider.hxx
 include/OpenCASCADE/DEBRepCascade_ConfigurationNode.hxx
 include/OpenCASCADE/DEBRepCascade_Provider.hxx
+include/OpenCASCADE/DEGLTF_ConfigurationNode.hxx
+include/OpenCASCADE/DEGLTF_Provider.hxx
+include/OpenCASCADE/DEIGES_ConfigurationNode.hxx
+include/OpenCASCADE/DEIGES_Parameters.hxx
+include/OpenCASCADE/DEIGES_Provider.hxx
+include/OpenCASCADE/DEOBJ_ConfigurationNode.hxx
+include/OpenCASCADE/DEOBJ_Provider.hxx
+include/OpenCASCADE/DEPLY_ConfigurationNode.hxx
+include/OpenCASCADE/DEPLY_Provider.hxx
+include/OpenCASCADE/DESTEP_ConfigurationNode.hxx
+include/OpenCASCADE/DESTEP_Parameters.hxx
+include/OpenCASCADE/DESTEP_Provider.hxx
+include/OpenCASCADE/DESTL_ConfigurationNode.hxx
+include/OpenCASCADE/DESTL_Provider.hxx
+include/OpenCASCADE/DEVRML_ConfigurationNode.hxx
+include/OpenCASCADE/DEVRML_Provider.hxx
 include/OpenCASCADE/DEXCAFCascade_ConfigurationNode.hxx
 include/OpenCASCADE/DEXCAFCascade_Provider.hxx
+include/OpenCASCADE/DEXCAF_ConfigurationNode.hxx
+include/OpenCASCADE/DEXCAF_Provider.hxx
 include/OpenCASCADE/DE_ConfigurationContext.hxx
 include/OpenCASCADE/DE_ConfigurationNode.hxx
 include/OpenCASCADE/DE_PluginHolder.hxx
 include/OpenCASCADE/DE_Provider.hxx
+include/OpenCASCADE/DE_ShapeFixConfigurationNode.hxx
+include/OpenCASCADE/DE_ShapeFixParameters.hxx
 include/OpenCASCADE/DE_Wrapper.hxx
-include/OpenCASCADE/DFBrowserPane_AttributePane.hxx
-include/OpenCASCADE/DFBrowserPane_AttributePaneAPI.hxx
-include/OpenCASCADE/DFBrowserPane_AttributePaneCreator.hxx
-include/OpenCASCADE/DFBrowserPane_AttributePaneCreatorAPI.hxx
-include/OpenCASCADE/DFBrowserPane_AttributePaneModel.hxx
-include/OpenCASCADE/DFBrowserPane_AttributePaneSelector.hxx
-include/OpenCASCADE/DFBrowserPane_HelperArray.hxx
-include/OpenCASCADE/DFBrowserPane_HelperExport.hxx
-include/OpenCASCADE/DFBrowserPane_ItemDelegateButton.hxx
-include/OpenCASCADE/DFBrowserPane_ItemRole.hxx
-include/OpenCASCADE/DFBrowserPane_OcctEnumType.hxx
-include/OpenCASCADE/DFBrowserPane_SelectionKind.hxx
-include/OpenCASCADE/DFBrowserPane_TDFReference.hxx
-include/OpenCASCADE/DFBrowserPane_TDataStdReferenceArray.hxx
-include/OpenCASCADE/DFBrowserPane_TDataStdReferenceList.hxx
-include/OpenCASCADE/DFBrowserPane_TDataStdTreeNode.hxx
-include/OpenCASCADE/DFBrowserPane_TDataStdTreeNodeItem.hxx
-include/OpenCASCADE/DFBrowserPane_TDataStdTreeNodeModel.hxx
-include/OpenCASCADE/DFBrowserPane_TNamingNamedShape.hxx
-include/OpenCASCADE/DFBrowserPane_TNamingNaming.hxx
-include/OpenCASCADE/DFBrowserPane_TNamingUsedShapes.hxx
-include/OpenCASCADE/DFBrowserPane_TableView.hxx
-include/OpenCASCADE/DFBrowserPane_Tools.hxx
-include/OpenCASCADE/DFBrowser_AttributePaneStack.hxx
-include/OpenCASCADE/DFBrowser_AttributePaneType.hxx
-include/OpenCASCADE/DFBrowser_Communicator.hxx
-include/OpenCASCADE/DFBrowser_DumpView.hxx
-include/OpenCASCADE/DFBrowser_HighlightDelegate.hxx
-include/OpenCASCADE/DFBrowser_Item.hxx
-include/OpenCASCADE/DFBrowser_ItemApplication.hxx
-include/OpenCASCADE/DFBrowser_ItemBase.hxx
-include/OpenCASCADE/DFBrowser_ItemDocument.hxx
-include/OpenCASCADE/DFBrowser_ItemRole.hxx
-include/OpenCASCADE/DFBrowser_Module.hxx
-include/OpenCASCADE/DFBrowser_OpenApplication.hxx
-include/OpenCASCADE/DFBrowser_PropertyPanel.hxx
-include/OpenCASCADE/DFBrowser_SearchItemInfo.hxx
-include/OpenCASCADE/DFBrowser_SearchLine.hxx
-include/OpenCASCADE/DFBrowser_SearchLineModel.hxx
-include/OpenCASCADE/DFBrowser_SearchView.hxx
-include/OpenCASCADE/DFBrowser_Tools.hxx
-include/OpenCASCADE/DFBrowser_TreeLevelLine.hxx
-include/OpenCASCADE/DFBrowser_TreeLevelLineDelegate.hxx
-include/OpenCASCADE/DFBrowser_TreeLevelLineModel.hxx
-include/OpenCASCADE/DFBrowser_TreeLevelView.hxx
-include/OpenCASCADE/DFBrowser_TreeLevelViewModel.hxx
-include/OpenCASCADE/DFBrowser_TreeModel.hxx
-include/OpenCASCADE/DFBrowser_Window.hxx
 include/OpenCASCADE/DNaming.hxx
 include/OpenCASCADE/DNaming_BooleanOperationDriver.hxx
 include/OpenCASCADE/DNaming_BoxDriver.hxx
@@ -21674,7 +21675,6 @@ include/OpenCASCADE/Extrema_CCLocFOfLocECC.hxx
 include/OpenCASCADE/Extrema_CCLocFOfLocECC2d.hxx
 include/OpenCASCADE/Extrema_Curve2dTool.hxx
 include/OpenCASCADE/Extrema_Curve2dTool.lxx
-include/OpenCASCADE/Extrema_CurveLocator.gxx
 include/OpenCASCADE/Extrema_CurveTool.hxx
 include/OpenCASCADE/Extrema_CurveTool.lxx
 include/OpenCASCADE/Extrema_ECC.hxx
@@ -21704,23 +21704,15 @@ include/OpenCASCADE/Extrema_ExtPExtS.hxx
 include/OpenCASCADE/Extrema_ExtPRevS.hxx
 include/OpenCASCADE/Extrema_ExtPS.hxx
 include/OpenCASCADE/Extrema_ExtSS.hxx
-include/OpenCASCADE/Extrema_FuncExtCC.gxx
 include/OpenCASCADE/Extrema_FuncExtCC.lxx
 include/OpenCASCADE/Extrema_FuncExtCS.hxx
-include/OpenCASCADE/Extrema_FuncExtPC.gxx
 include/OpenCASCADE/Extrema_FuncExtSS.hxx
 include/OpenCASCADE/Extrema_FuncPSDist.hxx
 include/OpenCASCADE/Extrema_FuncPSNorm.hxx
-include/OpenCASCADE/Extrema_GExtPC.gxx
-include/OpenCASCADE/Extrema_GLocateExtPC.gxx
-include/OpenCASCADE/Extrema_GenExtCC.gxx
 include/OpenCASCADE/Extrema_GenExtCS.hxx
-include/OpenCASCADE/Extrema_GenExtPC.gxx
 include/OpenCASCADE/Extrema_GenExtPS.hxx
 include/OpenCASCADE/Extrema_GenExtSS.hxx
-include/OpenCASCADE/Extrema_GenLocateExtCC.gxx
 include/OpenCASCADE/Extrema_GenLocateExtCS.hxx
-include/OpenCASCADE/Extrema_GenLocateExtPC.gxx
 include/OpenCASCADE/Extrema_GenLocateExtPS.hxx
 include/OpenCASCADE/Extrema_GenLocateExtSS.hxx
 include/OpenCASCADE/Extrema_GlobOptFuncCC.hxx
@@ -21754,7 +21746,6 @@ include/OpenCASCADE/Extrema_POnSurf.hxx
 include/OpenCASCADE/Extrema_POnSurf.lxx
 include/OpenCASCADE/Extrema_POnSurfParams.hxx
 include/OpenCASCADE/Extrema_POnSurfParams.lxx
-include/OpenCASCADE/Extrema_Point.gxx
 include/OpenCASCADE/Extrema_Point.lxx
 include/OpenCASCADE/Extrema_SequenceOfPOnCurv.hxx
 include/OpenCASCADE/Extrema_SequenceOfPOnCurv2d.hxx
@@ -22646,7 +22637,6 @@ include/OpenCASCADE/IFSelect_Dispatch.hxx
 include/OpenCASCADE/IFSelect_EditForm.hxx
 include/OpenCASCADE/IFSelect_EditValue.hxx
 include/OpenCASCADE/IFSelect_Editor.hxx
-include/OpenCASCADE/IFSelect_FileModifier.gxx
 include/OpenCASCADE/IFSelect_Functions.hxx
 include/OpenCASCADE/IFSelect_GeneralModifier.hxx
 include/OpenCASCADE/IFSelect_GraphCounter.hxx
@@ -22654,7 +22644,6 @@ include/OpenCASCADE/IFSelect_HSeqOfSelection.hxx
 include/OpenCASCADE/IFSelect_IntParam.hxx
 include/OpenCASCADE/IFSelect_ListEditor.hxx
 include/OpenCASCADE/IFSelect_ModelCopier.hxx
-include/OpenCASCADE/IFSelect_ModelModifier.gxx
 include/OpenCASCADE/IFSelect_ModifEditForm.hxx
 include/OpenCASCADE/IFSelect_ModifReorder.hxx
 include/OpenCASCADE/IFSelect_Modifier.hxx
@@ -23294,23 +23283,14 @@ include/OpenCASCADE/IntAna_QuadQuadGeo.hxx
 include/OpenCASCADE/IntAna_QuadQuadGeo.lxx
 include/OpenCASCADE/IntAna_Quadric.hxx
 include/OpenCASCADE/IntAna_ResultType.hxx
-include/OpenCASCADE/IntCurveSurface_HCurveTool.gxx
-include/OpenCASCADE/IntCurveSurface_HCurveTool.lxx
 include/OpenCASCADE/IntCurveSurface_HInter.hxx
-include/OpenCASCADE/IntCurveSurface_Inter.gxx
 include/OpenCASCADE/IntCurveSurface_Intersection.hxx
 include/OpenCASCADE/IntCurveSurface_IntersectionPoint.hxx
 include/OpenCASCADE/IntCurveSurface_IntersectionPoint.lxx
 include/OpenCASCADE/IntCurveSurface_IntersectionSegment.hxx
-include/OpenCASCADE/IntCurveSurface_Polygon.gxx
-include/OpenCASCADE/IntCurveSurface_PolygonTool.gxx
 include/OpenCASCADE/IntCurveSurface_PolygonTool.lxx
-include/OpenCASCADE/IntCurveSurface_Polyhedron.gxx
 include/OpenCASCADE/IntCurveSurface_Polyhedron.lxx
-include/OpenCASCADE/IntCurveSurface_PolyhedronTool.gxx
 include/OpenCASCADE/IntCurveSurface_PolyhedronTool.lxx
-include/OpenCASCADE/IntCurveSurface_QuadricCurveExactInter.gxx
-include/OpenCASCADE/IntCurveSurface_QuadricCurveFunc.gxx
 include/OpenCASCADE/IntCurveSurface_SequenceOfPnt.hxx
 include/OpenCASCADE/IntCurveSurface_SequenceOfSeg.hxx
 include/OpenCASCADE/IntCurveSurface_TheCSFunctionOfHInter.hxx
@@ -23324,44 +23304,29 @@ include/OpenCASCADE/IntCurveSurface_ThePolyhedronToolOfHInter.hxx
 include/OpenCASCADE/IntCurveSurface_TheQuadCurvExactHInter.hxx
 include/OpenCASCADE/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx
 include/OpenCASCADE/IntCurveSurface_TransitionOnCurve.hxx
-include/OpenCASCADE/IntCurve_DistBetweenPCurvesGen.gxx
-include/OpenCASCADE/IntCurve_ExactIntersectionPoint.gxx
 include/OpenCASCADE/IntCurve_IConicTool.hxx
 include/OpenCASCADE/IntCurve_IntConicConic.hxx
 include/OpenCASCADE/IntCurve_IntConicConic.lxx
 include/OpenCASCADE/IntCurve_IntConicConic_Tool.hxx
-include/OpenCASCADE/IntCurve_IntConicCurveGen.gxx
 include/OpenCASCADE/IntCurve_IntConicCurveGen.lxx
-include/OpenCASCADE/IntCurve_IntCurveCurveGen.gxx
 include/OpenCASCADE/IntCurve_IntCurveCurveGen.lxx
 include/OpenCASCADE/IntCurve_IntImpConicParConic.hxx
-include/OpenCASCADE/IntCurve_IntPolyPolyGen.gxx
 include/OpenCASCADE/IntCurve_MyImpParToolOfIntImpConicParConic.hxx
 include/OpenCASCADE/IntCurve_PConic.hxx
 include/OpenCASCADE/IntCurve_PConic.lxx
 include/OpenCASCADE/IntCurve_PConicTool.hxx
-include/OpenCASCADE/IntCurve_Polygon2dGen.gxx
 include/OpenCASCADE/IntCurve_Polygon2dGen.lxx
-include/OpenCASCADE/IntCurve_ProjPCurGen.gxx
 include/OpenCASCADE/IntCurve_ProjectOnPConicTool.hxx
-include/OpenCASCADE/IntCurve_UserIntConicCurveGen.gxx
 include/OpenCASCADE/IntCurvesFace_Intersector.hxx
 include/OpenCASCADE/IntCurvesFace_Intersector.lxx
 include/OpenCASCADE/IntCurvesFace_ShapeIntersector.hxx
 include/OpenCASCADE/IntImpParGen.hxx
-include/OpenCASCADE/IntImpParGen_ImpParTool.gxx
 include/OpenCASCADE/IntImpParGen_ImpTool.hxx
-include/OpenCASCADE/IntImpParGen_Intersector.gxx
 include/OpenCASCADE/IntImpParGen_Tool.hxx
 include/OpenCASCADE/IntImp_ComputeTangence.hxx
 include/OpenCASCADE/IntImp_ConstIsoparametric.hxx
-include/OpenCASCADE/IntImp_Int2S.gxx
 include/OpenCASCADE/IntImp_Int2S.lxx
-include/OpenCASCADE/IntImp_IntCS.gxx
-include/OpenCASCADE/IntImp_ZerCSParFunc.gxx
-include/OpenCASCADE/IntImp_ZerImpFunc.gxx
 include/OpenCASCADE/IntImp_ZerImpFunc.lxx
-include/OpenCASCADE/IntImp_ZerParFunc.gxx
 include/OpenCASCADE/IntImp_ZerParFunc.lxx
 include/OpenCASCADE/IntPatch_ALine.hxx
 include/OpenCASCADE/IntPatch_ALine.lxx
@@ -23379,13 +23344,6 @@ include/OpenCASCADE/IntPatch_HInterTool.lxx
 include/OpenCASCADE/IntPatch_IType.hxx
 include/OpenCASCADE/IntPatch_ImpImpIntersection.hxx
 include/OpenCASCADE/IntPatch_ImpImpIntersection.lxx
-include/OpenCASCADE/IntPatch_ImpImpIntersection_0.gxx
-include/OpenCASCADE/IntPatch_ImpImpIntersection_1.gxx
-include/OpenCASCADE/IntPatch_ImpImpIntersection_2.gxx
-include/OpenCASCADE/IntPatch_ImpImpIntersection_3.gxx
-include/OpenCASCADE/IntPatch_ImpImpIntersection_4.gxx
-include/OpenCASCADE/IntPatch_ImpImpIntersection_5.gxx
-include/OpenCASCADE/IntPatch_ImpImpIntersection_6.gxx
 include/OpenCASCADE/IntPatch_ImpPrmIntersection.hxx
 include/OpenCASCADE/IntPatch_ImpPrmIntersection.lxx
 include/OpenCASCADE/IntPatch_InterferencePolyhedron.hxx
@@ -23462,14 +23420,10 @@ include/OpenCASCADE/IntRes2d_Situation.hxx
 include/OpenCASCADE/IntRes2d_Transition.hxx
 include/OpenCASCADE/IntRes2d_Transition.lxx
 include/OpenCASCADE/IntRes2d_TypeTrans.hxx
-include/OpenCASCADE/IntStart_PathPoint.gxx
 include/OpenCASCADE/IntStart_PathPoint.lxx
 include/OpenCASCADE/IntStart_SITopolTool.hxx
-include/OpenCASCADE/IntStart_SearchInside.gxx
 include/OpenCASCADE/IntStart_SearchInside.lxx
-include/OpenCASCADE/IntStart_SearchOnBoundaries.gxx
 include/OpenCASCADE/IntStart_SearchOnBoundaries.lxx
-include/OpenCASCADE/IntStart_Segment.gxx
 include/OpenCASCADE/IntStart_Segment.lxx
 include/OpenCASCADE/IntSurf.hxx
 include/OpenCASCADE/IntSurf_Allocator.hxx
@@ -23548,16 +23502,8 @@ include/OpenCASCADE/IntTools_SurfaceRangeSample.lxx
 include/OpenCASCADE/IntTools_Tools.hxx
 include/OpenCASCADE/IntTools_TopolTool.hxx
 include/OpenCASCADE/IntTools_WLineTool.hxx
-include/OpenCASCADE/IntWalk_IWLine.gxx
 include/OpenCASCADE/IntWalk_IWLine.lxx
-include/OpenCASCADE/IntWalk_IWalking.gxx
 include/OpenCASCADE/IntWalk_IWalking.lxx
*** 1153 LINES SKIPPED ***