diff --git a/src/BVH/BVH_Builder3d.hxx b/src/BVH/BVH_Builder3d.hxx new file mode 100644 index 0000000000..d457cc7a0a --- /dev/null +++ b/src/BVH/BVH_Builder3d.hxx @@ -0,0 +1,21 @@ +// Copyright (c) 2024 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +#ifndef _BVH_Builder3d_Header +#define _BVH_Builder3d_Header + +#include + +typedef BVH_Builder BVH_Builder3d; + +#endif // _BVH_Builder3d_Header \ No newline at end of file diff --git a/src/BVH/FILES b/src/BVH/FILES index dd7b34e837..df24705741 100644 --- a/src/BVH/FILES +++ b/src/BVH/FILES @@ -3,6 +3,7 @@ BVH_BinnedBuilder.hxx BVH_Box.hxx BVH_BoxSet.hxx BVH_Builder.hxx +BVH_Builder3d.hxx BVH_BuildQueue.hxx BVH_BuildQueue.cxx BVH_BuildThread.hxx diff --git a/src/DEBRepCascade/DEBRepCascade_Provider.cxx b/src/DEBRepCascade/DEBRepCascade_Provider.cxx index 6af321edc9..a9a663ab46 100644 --- a/src/DEBRepCascade/DEBRepCascade_Provider.cxx +++ b/src/DEBRepCascade/DEBRepCascade_Provider.cxx @@ -14,7 +14,6 @@ #include #include -#include #include #include #include diff --git a/src/Geom2d/Geom2d_Ellipse.cxx b/src/Geom2d/Geom2d_Ellipse.cxx index 3ea205600d..668a447863 100644 --- a/src/Geom2d/Geom2d_Ellipse.cxx +++ b/src/Geom2d/Geom2d_Ellipse.cxx @@ -32,7 +32,6 @@ IMPLEMENT_STANDARD_RTTIEXT(Geom2d_Ellipse,Geom2d_Conic) -typedef Geom2d_Ellipse Ellipse; typedef gp_Ax2d Ax2d; typedef gp_Dir2d Dir2d; typedef gp_Pnt2d Pnt2d; @@ -48,7 +47,7 @@ typedef gp_XY XY; Handle(Geom2d_Geometry) Geom2d_Ellipse::Copy() const { Handle(Geom2d_Ellipse) E; - E = new Ellipse (pos, majorRadius, minorRadius); + E = new Geom2d_Ellipse (pos, majorRadius, minorRadius); return E; } diff --git a/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx b/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx index 00296f8d15..a6e55d8b0d 100644 --- a/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx +++ b/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx @@ -17,7 +17,6 @@ //abv 06.01.99 fix of misprint //:p6 abv 26.02.99: make ConvertToPeriodic() return Null if nothing done -#include #include #include #include diff --git a/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx b/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx index 95b0ff7322..bbd3bdbc1b 100644 --- a/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx +++ b/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx @@ -21,7 +21,7 @@ // function : Graphic3d_BvhCStructureSetTrsfPers // purpose : // ======================================================================= -Graphic3d_BvhCStructureSetTrsfPers::Graphic3d_BvhCStructureSetTrsfPers (const Handle(Select3D_BVHBuilder3d)& theBuilder) +Graphic3d_BvhCStructureSetTrsfPers::Graphic3d_BvhCStructureSetTrsfPers (const Handle(BVH_Builder3d)& theBuilder) : myIsDirty (Standard_False), myBVH (new BVH_Tree()), myBuilder (theBuilder) diff --git a/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx b/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx index 8af7ba5e18..be19c83c09 100644 --- a/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx +++ b/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx @@ -21,7 +21,7 @@ #include #include #include -#include +#include class Graphic3d_Camera; class Graphic3d_CStructure; @@ -39,7 +39,7 @@ private: public: //! Creates an empty primitive set for BVH clipping. - Standard_EXPORT Graphic3d_BvhCStructureSetTrsfPers (const Handle(Select3D_BVHBuilder3d)& theBuilder); + Standard_EXPORT Graphic3d_BvhCStructureSetTrsfPers (const Handle(BVH_Builder3d)& theBuilder); //! Returns total number of structures. Standard_EXPORT virtual Standard_Integer Size() const Standard_OVERRIDE; @@ -87,10 +87,10 @@ public: const Graphic3d_WorldViewProjState& theWVPState); //! Returns builder for bottom-level BVH. - const Handle(Select3D_BVHBuilder3d)& Builder() const { return myBuilder; } + const Handle(BVH_Builder3d)& Builder() const { return myBuilder; } //! Assigns builder for bottom-level BVH. - void SetBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder) { myBuilder = theBuilder; } + void SetBuilder (const Handle(BVH_Builder3d)& theBuilder) { myBuilder = theBuilder; } private: @@ -101,7 +101,7 @@ private: opencascade::handle > myBVH; //! Builder for bottom-level BVH. - Handle(Select3D_BVHBuilder3d) myBuilder; + Handle(BVH_Builder3d) myBuilder; //! Indexed map of structures. NCollection_IndexedMap myStructs; diff --git a/src/Graphic3d/Graphic3d_GraphicDriver.cxx b/src/Graphic3d/Graphic3d_GraphicDriver.cxx index 3717f05d65..eb5bc5f40c 100644 --- a/src/Graphic3d/Graphic3d_GraphicDriver.cxx +++ b/src/Graphic3d/Graphic3d_GraphicDriver.cxx @@ -38,7 +38,7 @@ Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayCon aSettings.SetEnableDepthWrite (Standard_False); aSettings.SetClearDepth (Standard_False); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); - Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_BotOSD, Handle(Select3D_BVHBuilder3d)()); + Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_BotOSD, Handle(BVH_Builder3d)()); aLayer->SetLayerSettings (aSettings); myLayers.Append (aLayer); myLayerIds.Bind (aLayer->LayerId(), aLayer); @@ -54,7 +54,7 @@ Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayCon aSettings.SetEnableDepthWrite (Standard_True); aSettings.SetClearDepth (Standard_False); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); - Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Default, Handle(Select3D_BVHBuilder3d)()); + Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Default, Handle(BVH_Builder3d)()); aLayer->SetLayerSettings (aSettings); myLayers.Append (aLayer); myLayerIds.Bind (aLayer->LayerId(), aLayer); @@ -70,7 +70,7 @@ Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayCon aSettings.SetEnableDepthWrite (Standard_True); aSettings.SetClearDepth (Standard_False); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); - Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Top, Handle(Select3D_BVHBuilder3d)()); + Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Top, Handle(BVH_Builder3d)()); aLayer->SetLayerSettings (aSettings); myLayers.Append (aLayer); myLayerIds.Bind (aLayer->LayerId(), aLayer); @@ -86,7 +86,7 @@ Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayCon aSettings.SetEnableDepthWrite (Standard_True); aSettings.SetClearDepth (Standard_True); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); - Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Topmost, Handle(Select3D_BVHBuilder3d)()); + Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_Topmost, Handle(BVH_Builder3d)()); aLayer->SetLayerSettings (aSettings); myLayers.Append (aLayer); myLayerIds.Bind (aLayer->LayerId(), aLayer); @@ -102,7 +102,7 @@ Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayCon aSettings.SetEnableDepthWrite (Standard_False); aSettings.SetClearDepth (Standard_False); aSettings.SetPolygonOffset (Graphic3d_PolygonOffset()); - Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_TopOSD, Handle(Select3D_BVHBuilder3d)()); + Handle(Graphic3d_Layer) aLayer = new Graphic3d_Layer (Graphic3d_ZLayerId_TopOSD, Handle(BVH_Builder3d)()); aLayer->SetLayerSettings (aSettings); myLayers.Append (aLayer); myLayerIds.Bind (aLayer->LayerId(), aLayer); @@ -192,7 +192,7 @@ void Graphic3d_GraphicDriver::InsertLayerBefore (const Graphic3d_ZLayerId theNew Standard_ASSERT_RAISE (!myLayerIds.IsBound (theNewLayerId), "Graphic3d_GraphicDriver::InsertLayerBefore, Layer with theLayerId already exists"); - Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, Handle(Select3D_BVHBuilder3d)()); + Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, Handle(BVH_Builder3d)()); aNewLayer->SetLayerSettings (theSettings); Handle(Graphic3d_Layer) anOtherLayer; @@ -228,7 +228,7 @@ void Graphic3d_GraphicDriver::InsertLayerAfter (const Graphic3d_ZLayerId theNewL Standard_ASSERT_RAISE (!myLayerIds.IsBound (theNewLayerId), "Graphic3d_GraphicDriver::InsertLayerAfter, Layer with theLayerId already exists"); - Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, Handle(Select3D_BVHBuilder3d)()); + Handle(Graphic3d_Layer) aNewLayer = new Graphic3d_Layer (theNewLayerId, Handle(BVH_Builder3d)()); aNewLayer->SetLayerSettings (theSettings); Handle(Graphic3d_Layer) anOtherLayer; diff --git a/src/Graphic3d/Graphic3d_Layer.cxx b/src/Graphic3d/Graphic3d_Layer.cxx index b6e2d6279c..bf82b2fdb5 100644 --- a/src/Graphic3d/Graphic3d_Layer.cxx +++ b/src/Graphic3d/Graphic3d_Layer.cxx @@ -23,7 +23,7 @@ IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_Layer, Standard_Transient) // purpose : // ======================================================================= Graphic3d_Layer::Graphic3d_Layer (Graphic3d_ZLayerId theId, - const Handle(Select3D_BVHBuilder3d)& theBuilder) + const Handle(BVH_Builder3d)& theBuilder) : myNbStructures (0), myNbStructuresNotCulled (0), myLayerId (theId), diff --git a/src/Graphic3d/Graphic3d_Layer.hxx b/src/Graphic3d/Graphic3d_Layer.hxx index c73419b977..934a18510e 100644 --- a/src/Graphic3d/Graphic3d_Layer.hxx +++ b/src/Graphic3d/Graphic3d_Layer.hxx @@ -41,7 +41,7 @@ public: //! Initializes associated priority list and layer properties Standard_EXPORT Graphic3d_Layer (Graphic3d_ZLayerId theId, - const Handle(Select3D_BVHBuilder3d)& theBuilder); + const Handle(BVH_Builder3d)& theBuilder); //! Destructor. Standard_EXPORT virtual ~Graphic3d_Layer(); @@ -50,10 +50,10 @@ public: Graphic3d_ZLayerId LayerId() const { return myLayerId; } //! Returns BVH tree builder for frustum culling. - const Handle(Select3D_BVHBuilder3d)& FrustumCullingBVHBuilder() const { return myBVHPrimitivesTrsfPers.Builder(); } + const Handle(BVH_Builder3d)& FrustumCullingBVHBuilder() const { return myBVHPrimitivesTrsfPers.Builder(); } //! Assigns BVH tree builder for frustum culling. - void SetFrustumCullingBVHBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder) { myBVHPrimitivesTrsfPers.SetBuilder (theBuilder); } + void SetFrustumCullingBVHBuilder (const Handle(BVH_Builder3d)& theBuilder) { myBVHPrimitivesTrsfPers.SetBuilder (theBuilder); } //! Return true if layer was marked with immediate flag. Standard_Boolean IsImmediate() const { return myLayerSettings.IsImmediate(); } diff --git a/src/IGESCAFControl/IGESCAFControl_Provider.cxx b/src/IGESCAFControl/IGESCAFControl_Provider.cxx index a766f73c99..9ca7a987c3 100644 --- a/src/IGESCAFControl/IGESCAFControl_Provider.cxx +++ b/src/IGESCAFControl/IGESCAFControl_Provider.cxx @@ -13,7 +13,6 @@ #include -#include #include #include #include diff --git a/src/OpenGl/OpenGl_LayerList.cxx b/src/OpenGl/OpenGl_LayerList.cxx index 4cceccfdb5..845fdeb933 100644 --- a/src/OpenGl/OpenGl_LayerList.cxx +++ b/src/OpenGl/OpenGl_LayerList.cxx @@ -191,7 +191,7 @@ OpenGl_LayerList::~OpenGl_LayerList() //function : SetFrustumCullingBVHBuilder //purpose : //======================================================================= -void OpenGl_LayerList::SetFrustumCullingBVHBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder) +void OpenGl_LayerList::SetFrustumCullingBVHBuilder (const Handle(BVH_Builder3d)& theBuilder) { myBVHBuilder = theBuilder; for (NCollection_List::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next()) diff --git a/src/OpenGl/OpenGl_LayerList.hxx b/src/OpenGl/OpenGl_LayerList.hxx index eb614f55af..21d8f1719f 100644 --- a/src/OpenGl/OpenGl_LayerList.hxx +++ b/src/OpenGl/OpenGl_LayerList.hxx @@ -121,10 +121,10 @@ public: Standard_Size ModificationStateOfRaytracable() const { return myModifStateOfRaytraceable; } //! Returns BVH tree builder for frustum culling. - const Handle(Select3D_BVHBuilder3d)& FrustumCullingBVHBuilder() const { return myBVHBuilder; } + const Handle(BVH_Builder3d)& FrustumCullingBVHBuilder() const { return myBVHBuilder; } //! Assigns BVH tree builder for frustum culling. - Standard_EXPORT void SetFrustumCullingBVHBuilder (const Handle(Select3D_BVHBuilder3d)& theBuilder); + Standard_EXPORT void SetFrustumCullingBVHBuilder (const Handle(BVH_Builder3d)& theBuilder); //! Dumps the content of me into the stream Standard_EXPORT void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const; @@ -207,7 +207,7 @@ protected: NCollection_List myLayers; NCollection_DataMap myLayerIds; - Handle(Select3D_BVHBuilder3d) myBVHBuilder; //!< BVH tree builder for frustum culling + Handle(BVH_Builder3d) myBVHBuilder; //!< BVH tree builder for frustum culling Standard_Integer myNbStructures; Standard_Integer myImmediateNbStructures; //!< number of structures within immediate layers diff --git a/src/RWGltf/RWGltf_Provider.cxx b/src/RWGltf/RWGltf_Provider.cxx index eeadfba355..77c527d53c 100644 --- a/src/RWGltf/RWGltf_Provider.cxx +++ b/src/RWGltf/RWGltf_Provider.cxx @@ -13,7 +13,6 @@ #include -#include #include #include #include diff --git a/src/RWObj/RWObj_Provider.cxx b/src/RWObj/RWObj_Provider.cxx index aa6d986520..8b1885fcb3 100644 --- a/src/RWObj/RWObj_Provider.cxx +++ b/src/RWObj/RWObj_Provider.cxx @@ -13,7 +13,6 @@ #include -#include #include #include #include diff --git a/src/RWStl/RWStl_Provider.cxx b/src/RWStl/RWStl_Provider.cxx index 302c9b661d..8fa8dd281e 100644 --- a/src/RWStl/RWStl_Provider.cxx +++ b/src/RWStl/RWStl_Provider.cxx @@ -13,7 +13,6 @@ #include -#include #include #include #include diff --git a/src/STEPCAFControl/STEPCAFControl_Provider.cxx b/src/STEPCAFControl/STEPCAFControl_Provider.cxx index 354212e60c..f66a70900a 100644 --- a/src/STEPCAFControl/STEPCAFControl_Provider.cxx +++ b/src/STEPCAFControl/STEPCAFControl_Provider.cxx @@ -13,7 +13,6 @@ #include -#include #include #include #include diff --git a/src/TKDE/EXTERNLIB b/src/TKDE/EXTERNLIB index 58c24f0d95..6d39d0d7ef 100644 --- a/src/TKDE/EXTERNLIB +++ b/src/TKDE/EXTERNLIB @@ -1 +1,3 @@ TKernel +TKMath +TKBRep diff --git a/src/Vrml/Vrml_Provider.cxx b/src/Vrml/Vrml_Provider.cxx index 39527456dc..c71ec12a48 100644 --- a/src/Vrml/Vrml_Provider.cxx +++ b/src/Vrml/Vrml_Provider.cxx @@ -13,7 +13,6 @@ #include -#include #include #include #include diff --git a/src/XDEDRAW/XDEDRAW.cxx b/src/XDEDRAW/XDEDRAW.cxx index f953df0378..5d0773b054 100644 --- a/src/XDEDRAW/XDEDRAW.cxx +++ b/src/XDEDRAW/XDEDRAW.cxx @@ -112,8 +112,6 @@ #include #include #include -#include -#include #include #include