X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=blobdiff_plain;f=src%2FSelectMgr%2FSelectMgr_Frustum.hxx;h=8b49b30ed0f53d253cb981750a34ff01a6068bbd;hb=03c9cc86c6674ffb2ba8fd5ce68f5d2dfc34a443;hpb=df23a355c480441fea78470bf5dfad94aacd8add diff --git a/src/SelectMgr/SelectMgr_Frustum.hxx b/src/SelectMgr/SelectMgr_Frustum.hxx index 52a97c5e9d..8b49b30ed0 100644 --- a/src/SelectMgr/SelectMgr_Frustum.hxx +++ b/src/SelectMgr/SelectMgr_Frustum.hxx @@ -67,26 +67,26 @@ protected: //! Returns true if selecting volume is overlapped by axis-aligned bounding box //! with minimum corner at point theMinPt and maximum at point theMaxPt - Standard_Boolean hasOverlap (const SelectMgr_Vec3& theBoxMin, - const SelectMgr_Vec3& theBoxMax, - Standard_Boolean* theInside = NULL) const; + Standard_Boolean hasBoxOverlap (const SelectMgr_Vec3& theBoxMin, + const SelectMgr_Vec3& theBoxMax, + Standard_Boolean* theInside = NULL) const; //! SAT intersection test between defined volume and given point - Standard_Boolean hasOverlap (const gp_Pnt& thePnt) const; + Standard_Boolean hasPointOverlap (const gp_Pnt& thePnt) const; //! SAT intersection test between defined volume and given segment - Standard_Boolean hasOverlap (const gp_Pnt& thePnt1, - const gp_Pnt& thePnt2) const; + Standard_Boolean hasSegmentOverlap (const gp_Pnt& thePnt1, + const gp_Pnt& thePnt2) const; //! SAT intersection test between frustum given and planar convex polygon represented as ordered point set - Standard_Boolean hasOverlap (const TColgp_Array1OfPnt& theArrayOfPnts, - gp_Vec& theNormal) const; + Standard_Boolean hasPolygonOverlap (const TColgp_Array1OfPnt& theArrayOfPnts, + gp_Vec& theNormal) const; //! SAT intersection test between defined volume and given triangle - Standard_Boolean hasOverlap (const gp_Pnt& thePnt1, - const gp_Pnt& thePnt2, - const gp_Pnt& thePnt3, - gp_Vec& theNormal) const; + Standard_Boolean hasTriangleOverlap (const gp_Pnt& thePnt1, + const gp_Pnt& thePnt2, + const gp_Pnt& thePnt3, + gp_Vec& theNormal) const; private: