]> OCCT Git - occt.git/commitdiff
0028922: Configuration - remove useless Standard_EXPORT in SelectMgr_Frustum::hasOver...
authorabv <abv@opencascade.com>
Wed, 19 Jul 2017 09:09:21 +0000 (12:09 +0300)
committerbugmaster <bugmaster@opencascade.com>
Fri, 21 Jul 2017 09:10:35 +0000 (12:10 +0300)
src/SelectMgr/SelectMgr_Frustum.hxx

index e03bed36a4d9000fe0d984d52dd934e5ad7105dc..1bd6105a981e6e71661f4c87550a85cce695719b 100644 (file)
@@ -64,26 +64,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_EXPORT Standard_Boolean hasOverlap (const SelectMgr_Vec3& theBoxMin,
-                                               const SelectMgr_Vec3& theBoxMax,
-                                               Standard_Boolean*     theInside = NULL);
+  Standard_Boolean hasOverlap (const SelectMgr_Vec3& theBoxMin,
+                               const SelectMgr_Vec3& theBoxMax,
+                               Standard_Boolean*     theInside = NULL);
 
   //! SAT intersection test between defined volume and given point
-  Standard_EXPORT Standard_Boolean hasOverlap (const gp_Pnt& thePnt);
+  Standard_Boolean hasOverlap (const gp_Pnt& thePnt);
 
   //! SAT intersection test between defined volume and given segment
-  Standard_EXPORT Standard_Boolean hasOverlap (const gp_Pnt& thePnt1,
-                                               const gp_Pnt& thePnt2);
+  Standard_Boolean hasOverlap (const gp_Pnt& thePnt1,
+                               const gp_Pnt& thePnt2);
 
   //! SAT intersection test between frustum given and planar convex polygon represented as ordered point set
-  Standard_EXPORT Standard_Boolean hasOverlap (const TColgp_Array1OfPnt& theArrayOfPnts,
-                                               gp_Vec& theNormal);
+  Standard_Boolean hasOverlap (const TColgp_Array1OfPnt& theArrayOfPnts,
+                               gp_Vec& theNormal);
 
   //! SAT intersection test between defined volume and given triangle
-  Standard_EXPORT Standard_Boolean hasOverlap (const gp_Pnt& thePnt1,
-                                               const gp_Pnt& thePnt2,
-                                               const gp_Pnt& thePnt3,
-                                               gp_Vec& theNormal);
+  Standard_Boolean hasOverlap (const gp_Pnt& thePnt1,
+                               const gp_Pnt& thePnt2,
+                               const gp_Pnt& thePnt3,
+                               gp_Vec& theNormal);
 
 private: