diff --git a/dox/dev_guides/upgrade/upgrade.md b/dox/dev_guides/upgrade/upgrade.md index 35df92f756..2ee0ba2615 100644 --- a/dox/dev_guides/upgrade/upgrade.md +++ b/dox/dev_guides/upgrade/upgrade.md @@ -1888,3 +1888,7 @@ Unexpected const-ness of Aspect_Window::DoResize() method has been removed, so t @subsection upgrade_750_rename Renaming of types Enumeration BRepOffset_Type is renamed to ChFiDS_TypeOfConcavity. + +@subsection upgrade_750_sensitiveEntity Select3D_SensitiveEntity interface change + +The method Select3D_SensitiveEntity::NbSubElements() has been changed to be constant. Select3D_SensitiveEntity subclasses at application level should be updated accordingly. diff --git a/src/MeshVS/MeshVS_CommonSensitiveEntity.cxx b/src/MeshVS/MeshVS_CommonSensitiveEntity.cxx index c0165fc44f..01ea125b7e 100644 --- a/src/MeshVS/MeshVS_CommonSensitiveEntity.cxx +++ b/src/MeshVS/MeshVS_CommonSensitiveEntity.cxx @@ -118,7 +118,7 @@ MeshVS_CommonSensitiveEntity::~MeshVS_CommonSensitiveEntity() //function : NbSubElements //purpose : //======================================================================= -Standard_Integer MeshVS_CommonSensitiveEntity::NbSubElements() +Standard_Integer MeshVS_CommonSensitiveEntity::NbSubElements() const { return myItemIndexes.Size(); } diff --git a/src/MeshVS/MeshVS_CommonSensitiveEntity.hxx b/src/MeshVS/MeshVS_CommonSensitiveEntity.hxx index fd87f9e08f..21dca5ea0b 100644 --- a/src/MeshVS/MeshVS_CommonSensitiveEntity.hxx +++ b/src/MeshVS/MeshVS_CommonSensitiveEntity.hxx @@ -36,7 +36,7 @@ public: Standard_EXPORT virtual ~MeshVS_CommonSensitiveEntity(); //! Number of elements. - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; //! Returns the amount of sub-entities of the complex entity Standard_EXPORT virtual Standard_Integer Size() const Standard_OVERRIDE; diff --git a/src/MeshVS/MeshVS_DummySensitiveEntity.cxx b/src/MeshVS/MeshVS_DummySensitiveEntity.cxx index b02f25a99a..ed8b9749e9 100644 --- a/src/MeshVS/MeshVS_DummySensitiveEntity.cxx +++ b/src/MeshVS/MeshVS_DummySensitiveEntity.cxx @@ -29,7 +29,7 @@ MeshVS_DummySensitiveEntity::MeshVS_DummySensitiveEntity (const Handle(SelectMgr // Function : NbSubElements // Purpose : //================================================================ -Standard_Integer MeshVS_DummySensitiveEntity::NbSubElements() +Standard_Integer MeshVS_DummySensitiveEntity::NbSubElements() const { return -1; } diff --git a/src/MeshVS/MeshVS_DummySensitiveEntity.hxx b/src/MeshVS/MeshVS_DummySensitiveEntity.hxx index 729cad77a9..049e5f41bd 100644 --- a/src/MeshVS/MeshVS_DummySensitiveEntity.hxx +++ b/src/MeshVS/MeshVS_DummySensitiveEntity.hxx @@ -36,7 +36,7 @@ public: Standard_EXPORT virtual Standard_Boolean Matches (SelectBasics_SelectingVolumeManager& theMgr, SelectBasics_PickResult& thePickResult) Standard_OVERRIDE; - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT virtual Select3D_BndBox3d BoundingBox() Standard_OVERRIDE; diff --git a/src/MeshVS/MeshVS_SensitiveMesh.cxx b/src/MeshVS/MeshVS_SensitiveMesh.cxx index 3feb84de21..b5bfed934a 100644 --- a/src/MeshVS/MeshVS_SensitiveMesh.cxx +++ b/src/MeshVS/MeshVS_SensitiveMesh.cxx @@ -77,7 +77,7 @@ Handle(Select3D_SensitiveEntity) MeshVS_SensitiveMesh::GetConnected() // function : NbSubElements // purpose : Returns the amount of mesh nodes //======================================================================= -Standard_Integer MeshVS_SensitiveMesh::NbSubElements() +Standard_Integer MeshVS_SensitiveMesh::NbSubElements() const { Handle(MeshVS_MeshOwner) anOwner = Handle(MeshVS_MeshOwner)::DownCast (OwnerId()); if (anOwner.IsNull()) diff --git a/src/MeshVS/MeshVS_SensitiveMesh.hxx b/src/MeshVS/MeshVS_SensitiveMesh.hxx index c24ec2aedd..3bedd05570 100644 --- a/src/MeshVS/MeshVS_SensitiveMesh.hxx +++ b/src/MeshVS/MeshVS_SensitiveMesh.hxx @@ -48,7 +48,7 @@ public: } //! Returns the amount of mesh nodes - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; //! Returns bounding box of mesh Standard_EXPORT virtual Select3D_BndBox3d BoundingBox() Standard_OVERRIDE; diff --git a/src/MeshVS/MeshVS_SensitivePolyhedron.cxx b/src/MeshVS/MeshVS_SensitivePolyhedron.cxx index f367406f2d..d64f322449 100644 --- a/src/MeshVS/MeshVS_SensitivePolyhedron.cxx +++ b/src/MeshVS/MeshVS_SensitivePolyhedron.cxx @@ -104,7 +104,7 @@ Standard_Boolean MeshVS_SensitivePolyhedron::Matches (SelectBasics_SelectingVolu // function : NbSubElements // purpose : Returns the amount of nodes of polyhedron //======================================================================= -Standard_Integer MeshVS_SensitivePolyhedron::NbSubElements() +Standard_Integer MeshVS_SensitivePolyhedron::NbSubElements() const { return myNodes->Length(); } diff --git a/src/MeshVS/MeshVS_SensitivePolyhedron.hxx b/src/MeshVS/MeshVS_SensitivePolyhedron.hxx index 0aac9ccd0c..2283b6d1eb 100644 --- a/src/MeshVS/MeshVS_SensitivePolyhedron.hxx +++ b/src/MeshVS/MeshVS_SensitivePolyhedron.hxx @@ -55,7 +55,7 @@ public: SelectBasics_PickResult& thePickResult) Standard_OVERRIDE; //! Returns the amount of nodes of polyhedron - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT virtual Select3D_BndBox3d BoundingBox() Standard_OVERRIDE; diff --git a/src/MeshVS/MeshVS_SensitiveQuad.hxx b/src/MeshVS/MeshVS_SensitiveQuad.hxx index 07cbf3d7c0..d4306f6693 100644 --- a/src/MeshVS/MeshVS_SensitiveQuad.hxx +++ b/src/MeshVS/MeshVS_SensitiveQuad.hxx @@ -38,7 +38,7 @@ public: const gp_Pnt& thePnt4); //! Returns the amount of sub-entities in sensitive - virtual Standard_Integer NbSubElements() Standard_OVERRIDE + virtual Standard_Integer NbSubElements() const Standard_OVERRIDE { return 1; }; diff --git a/src/Select3D/Select3D_InteriorSensitivePointSet.cxx b/src/Select3D/Select3D_InteriorSensitivePointSet.cxx index bc7d0a9edf..80640779bd 100644 --- a/src/Select3D/Select3D_InteriorSensitivePointSet.cxx +++ b/src/Select3D/Select3D_InteriorSensitivePointSet.cxx @@ -319,7 +319,7 @@ gp_Pnt Select3D_InteriorSensitivePointSet::CenterOfGeometry() const // function : NbSubElements // purpose : Returns the amount of points in set //======================================================================= -Standard_Integer Select3D_InteriorSensitivePointSet::NbSubElements() +Standard_Integer Select3D_InteriorSensitivePointSet::NbSubElements() const { return myPlanarPolygons.Length(); } diff --git a/src/Select3D/Select3D_InteriorSensitivePointSet.hxx b/src/Select3D/Select3D_InteriorSensitivePointSet.hxx index b9c7d658f2..614fce9ca0 100644 --- a/src/Select3D/Select3D_InteriorSensitivePointSet.hxx +++ b/src/Select3D/Select3D_InteriorSensitivePointSet.hxx @@ -68,7 +68,7 @@ public: Standard_EXPORT virtual gp_Pnt CenterOfGeometry() const Standard_OVERRIDE; //! Returns the amount of points in set - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; DEFINE_STANDARD_RTTIEXT(Select3D_InteriorSensitivePointSet,Select3D_SensitiveSet) diff --git a/src/Select3D/Select3D_SensitiveBox.cxx b/src/Select3D/Select3D_SensitiveBox.cxx index d5f169599b..989e127fe2 100644 --- a/src/Select3D/Select3D_SensitiveBox.cxx +++ b/src/Select3D/Select3D_SensitiveBox.cxx @@ -59,7 +59,7 @@ Select3D_SensitiveBox::Select3D_SensitiveBox (const Handle(SelectMgr_EntityOwner // function : NbSubElements // purpose : Returns the amount of sub-entities in sensitive //======================================================================= -Standard_Integer Select3D_SensitiveBox::NbSubElements() +Standard_Integer Select3D_SensitiveBox::NbSubElements() const { return 1; } diff --git a/src/Select3D/Select3D_SensitiveBox.hxx b/src/Select3D/Select3D_SensitiveBox.hxx index 06f91d02c6..c2a578d5ed 100644 --- a/src/Select3D/Select3D_SensitiveBox.hxx +++ b/src/Select3D/Select3D_SensitiveBox.hxx @@ -45,7 +45,7 @@ public: const Standard_Real theZMax); //! Returns the amount of sub-entities in sensitive - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT virtual Handle(Select3D_SensitiveEntity) GetConnected() Standard_OVERRIDE; diff --git a/src/Select3D/Select3D_SensitiveEntity.hxx b/src/Select3D/Select3D_SensitiveEntity.hxx index 506acd5166..b19cd5dfca 100644 --- a/src/Select3D/Select3D_SensitiveEntity.hxx +++ b/src/Select3D/Select3D_SensitiveEntity.hxx @@ -70,7 +70,7 @@ public: //! Returns the number of sub-entities or elements in sensitive entity. //! Is used to determine if entity is complex and needs to pre-build BVH at the creation of sensitive entity step //! or is light-weighted so the tree can be build on demand with unnoticeable delay. - virtual Standard_Integer NbSubElements() = 0; + virtual Standard_Integer NbSubElements() const = 0; //! Returns bounding box of a sensitive with transformation applied virtual Select3D_BndBox3d BoundingBox() = 0; diff --git a/src/Select3D/Select3D_SensitiveFace.cxx b/src/Select3D/Select3D_SensitiveFace.cxx index 0ae25aed5b..710a6546a0 100644 --- a/src/Select3D/Select3D_SensitiveFace.cxx +++ b/src/Select3D/Select3D_SensitiveFace.cxx @@ -139,7 +139,7 @@ gp_Pnt Select3D_SensitiveFace::CenterOfGeometry() const // purpose : Returns the amount of sub-entities (points or planar convex // polygons) //======================================================================= -Standard_Integer Select3D_SensitiveFace::NbSubElements() +Standard_Integer Select3D_SensitiveFace::NbSubElements() const { return myFacePoints->NbSubElements(); } diff --git a/src/Select3D/Select3D_SensitiveFace.hxx b/src/Select3D/Select3D_SensitiveFace.hxx index 5567c9f07a..b4075425ec 100644 --- a/src/Select3D/Select3D_SensitiveFace.hxx +++ b/src/Select3D/Select3D_SensitiveFace.hxx @@ -71,7 +71,7 @@ public: Standard_EXPORT virtual void BVH() Standard_OVERRIDE; //! Returns the amount of sub-entities (points or planar convex polygons) - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; private: diff --git a/src/Select3D/Select3D_SensitiveGroup.cxx b/src/Select3D/Select3D_SensitiveGroup.cxx index d01499d6c3..85fce6b7ce 100644 --- a/src/Select3D/Select3D_SensitiveGroup.cxx +++ b/src/Select3D/Select3D_SensitiveGroup.cxx @@ -164,7 +164,7 @@ void Select3D_SensitiveGroup::Clear() // function : NbSubElements // purpose : Returns the amount of sub-entities //======================================================================= -Standard_Integer Select3D_SensitiveGroup::NbSubElements() +Standard_Integer Select3D_SensitiveGroup::NbSubElements() const { return myEntities.Size(); } diff --git a/src/Select3D/Select3D_SensitiveGroup.hxx b/src/Select3D/Select3D_SensitiveGroup.hxx index 37efcf6cb0..a2194af278 100644 --- a/src/Select3D/Select3D_SensitiveGroup.hxx +++ b/src/Select3D/Select3D_SensitiveGroup.hxx @@ -113,7 +113,7 @@ public: SelectBasics_PickResult& thePickResult) Standard_OVERRIDE; //! Returns the amount of sub-entities - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT virtual Handle(Select3D_SensitiveEntity) GetConnected() Standard_OVERRIDE; diff --git a/src/Select3D/Select3D_SensitivePoint.cxx b/src/Select3D/Select3D_SensitivePoint.cxx index 39bca11760..a486c7560c 100644 --- a/src/Select3D/Select3D_SensitivePoint.cxx +++ b/src/Select3D/Select3D_SensitivePoint.cxx @@ -81,7 +81,7 @@ Select3D_BndBox3d Select3D_SensitivePoint::BoundingBox() // function : NbSubElements // purpose : Returns the amount of sub-entities in sensitive //======================================================================= -Standard_Integer Select3D_SensitivePoint::NbSubElements() +Standard_Integer Select3D_SensitivePoint::NbSubElements() const { return 1; } diff --git a/src/Select3D/Select3D_SensitivePoint.hxx b/src/Select3D/Select3D_SensitivePoint.hxx index a8c6e8c249..8a451b0cda 100644 --- a/src/Select3D/Select3D_SensitivePoint.hxx +++ b/src/Select3D/Select3D_SensitivePoint.hxx @@ -31,7 +31,7 @@ public: Standard_EXPORT Select3D_SensitivePoint (const Handle(SelectMgr_EntityOwner)& theOwnerId, const gp_Pnt& thePoint); //! Returns the amount of sub-entities in sensitive - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT virtual Handle(Select3D_SensitiveEntity) GetConnected() Standard_OVERRIDE; diff --git a/src/Select3D/Select3D_SensitivePoly.cxx b/src/Select3D/Select3D_SensitivePoly.cxx index 61a02bf94b..df133efa75 100644 --- a/src/Select3D/Select3D_SensitivePoly.cxx +++ b/src/Select3D/Select3D_SensitivePoly.cxx @@ -284,7 +284,7 @@ Standard_Real Select3D_SensitivePoly::distanceToCOG (SelectBasics_SelectingVolum // Function: NbSubElements // Purpose : Returns the amount of segments in poly //================================================== -Standard_Integer Select3D_SensitivePoly::NbSubElements() +Standard_Integer Select3D_SensitivePoly::NbSubElements() const { return myPolyg.Size(); } diff --git a/src/Select3D/Select3D_SensitivePoly.hxx b/src/Select3D/Select3D_SensitivePoly.hxx index e530093d11..a035d9b4e1 100644 --- a/src/Select3D/Select3D_SensitivePoly.hxx +++ b/src/Select3D/Select3D_SensitivePoly.hxx @@ -56,7 +56,7 @@ public: const Standard_Integer theNbPnts = 6); //! Returns the amount of segments in poly - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; //! Returns the 3D points of the array used at construction time. void Points3D (Handle(TColgp_HArray1OfPnt)& theHArrayOfPnt) diff --git a/src/Select3D/Select3D_SensitivePrimitiveArray.hxx b/src/Select3D/Select3D_SensitivePrimitiveArray.hxx index f579d7dc7a..ebeb913b0d 100644 --- a/src/Select3D/Select3D_SensitivePrimitiveArray.hxx +++ b/src/Select3D/Select3D_SensitivePrimitiveArray.hxx @@ -209,7 +209,7 @@ public: Standard_EXPORT virtual Standard_Integer Size() const Standard_OVERRIDE; //! Returns the amount of nodes in triangulation - virtual Standard_Integer NbSubElements() Standard_OVERRIDE + virtual Standard_Integer NbSubElements() const Standard_OVERRIDE { return !myGroups.IsNull() ? myGroups->Size() : myBvhIndices.NbElements; } diff --git a/src/Select3D/Select3D_SensitiveSegment.cxx b/src/Select3D/Select3D_SensitiveSegment.cxx index 8d51376315..b43b271e53 100644 --- a/src/Select3D/Select3D_SensitiveSegment.cxx +++ b/src/Select3D/Select3D_SensitiveSegment.cxx @@ -98,7 +98,7 @@ Select3D_BndBox3d Select3D_SensitiveSegment::BoundingBox() // function : NbSubElements // purpose : Returns the amount of points //======================================================================= -Standard_Integer Select3D_SensitiveSegment::NbSubElements() +Standard_Integer Select3D_SensitiveSegment::NbSubElements() const { return 2; } diff --git a/src/Select3D/Select3D_SensitiveSegment.hxx b/src/Select3D/Select3D_SensitiveSegment.hxx index 3aefcca48f..81dfe78ffd 100644 --- a/src/Select3D/Select3D_SensitiveSegment.hxx +++ b/src/Select3D/Select3D_SensitiveSegment.hxx @@ -46,7 +46,7 @@ public: const gp_Pnt& EndPoint() const { return myEnd; } //! Returns the amount of points - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT virtual Handle(Select3D_SensitiveEntity) GetConnected() Standard_OVERRIDE; diff --git a/src/Select3D/Select3D_SensitiveTriangle.hxx b/src/Select3D/Select3D_SensitiveTriangle.hxx index a9e04da030..bfcd84848f 100644 --- a/src/Select3D/Select3D_SensitiveTriangle.hxx +++ b/src/Select3D/Select3D_SensitiveTriangle.hxx @@ -63,7 +63,7 @@ public: Standard_EXPORT virtual Select3D_BndBox3d BoundingBox() Standard_OVERRIDE; //! Returns the amount of points - virtual Standard_Integer NbSubElements() Standard_OVERRIDE { return 3; } + virtual Standard_Integer NbSubElements() const Standard_OVERRIDE { return 3; } virtual gp_Pnt CenterOfGeometry() const Standard_OVERRIDE { return myCentroid; } diff --git a/src/Select3D/Select3D_SensitiveTriangulation.cxx b/src/Select3D/Select3D_SensitiveTriangulation.cxx index 859019a739..284ad200fd 100644 --- a/src/Select3D/Select3D_SensitiveTriangulation.cxx +++ b/src/Select3D/Select3D_SensitiveTriangulation.cxx @@ -421,7 +421,7 @@ gp_Pnt Select3D_SensitiveTriangulation::CenterOfGeometry() const // function : NbSubElements // purpose : Returns the amount of nodes in triangulation //======================================================================= -Standard_Integer Select3D_SensitiveTriangulation::NbSubElements() +Standard_Integer Select3D_SensitiveTriangulation::NbSubElements() const { return myTriangul->Nodes().Length(); } diff --git a/src/Select3D/Select3D_SensitiveTriangulation.hxx b/src/Select3D/Select3D_SensitiveTriangulation.hxx index 2d384f344d..7232978926 100644 --- a/src/Select3D/Select3D_SensitiveTriangulation.hxx +++ b/src/Select3D/Select3D_SensitiveTriangulation.hxx @@ -55,7 +55,7 @@ public: const Standard_Boolean theIsInterior); //! Returns the amount of nodes in triangulation - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT Handle(Select3D_SensitiveEntity) GetConnected() Standard_OVERRIDE; diff --git a/src/Select3D/Select3D_SensitiveWire.cxx b/src/Select3D/Select3D_SensitiveWire.cxx index 6f0128b3e5..f902f0318b 100644 --- a/src/Select3D/Select3D_SensitiveWire.cxx +++ b/src/Select3D/Select3D_SensitiveWire.cxx @@ -54,7 +54,7 @@ void Select3D_SensitiveWire::Add (const Handle(Select3D_SensitiveEntity)& theSen // function : NbSubElements // purpose : Returns the amount of sub-entities //======================================================================= -Standard_Integer Select3D_SensitiveWire::NbSubElements() +Standard_Integer Select3D_SensitiveWire::NbSubElements() const { return myEntities.Length(); } diff --git a/src/Select3D/Select3D_SensitiveWire.hxx b/src/Select3D/Select3D_SensitiveWire.hxx index 3b4f76e95a..539330f54d 100644 --- a/src/Select3D/Select3D_SensitiveWire.hxx +++ b/src/Select3D/Select3D_SensitiveWire.hxx @@ -33,7 +33,7 @@ public: Standard_EXPORT void Add (const Handle(Select3D_SensitiveEntity)& theSensitive); //! Returns the amount of sub-entities - Standard_EXPORT virtual Standard_Integer NbSubElements() Standard_OVERRIDE; + Standard_EXPORT virtual Standard_Integer NbSubElements() const Standard_OVERRIDE; Standard_EXPORT virtual Handle(Select3D_SensitiveEntity) GetConnected() Standard_OVERRIDE;