0032337: Visualization - rename Overlaps() method in selection to more self-describab...
[occt.git] / src / Select3D / Select3D_SensitivePoint.cxx
1 // Created on: 1995-03-10
2 // Created by: Mister rmi
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <Select3D_SensitivePoint.hxx>
18
19 IMPLEMENT_STANDARD_RTTIEXT(Select3D_SensitivePoint,Select3D_SensitiveEntity)
20
21 //==================================================
22 // Function: Creation
23 // Purpose :
24 //==================================================
25 Select3D_SensitivePoint::Select3D_SensitivePoint (const Handle(SelectMgr_EntityOwner)& theOwner,
26                                                   const gp_Pnt& thePoint)
27 : Select3D_SensitiveEntity (theOwner)
28 {
29   SetSensitivityFactor (12);
30   myPoint = thePoint;
31 }
32
33 //==================================================
34 // Function: Matches
35 // Purpose :
36 //==================================================
37 Standard_Boolean Select3D_SensitivePoint::Matches (SelectBasics_SelectingVolumeManager& theMgr,
38                                                    SelectBasics_PickResult& thePickResult)
39 {
40   if (!theMgr.OverlapsPoint (myPoint, thePickResult))
41   {
42     return Standard_False;
43   }
44
45   thePickResult.SetDistToGeomCenter (thePickResult.Depth());
46   return Standard_True;
47 }
48
49 //=======================================================================
50 //function : GetConnected
51 //purpose  :
52 //=======================================================================
53 Handle(Select3D_SensitiveEntity) Select3D_SensitivePoint::GetConnected()
54 {
55   Handle(Select3D_SensitivePoint) aNewEntity = new Select3D_SensitivePoint (myOwnerId, myPoint);
56   return aNewEntity;
57 }
58
59 //=======================================================================
60 // function : CenterOfGeometry
61 // purpose  : Returns center of point. If location transformation
62 //            is set, it will be applied
63 //=======================================================================
64 gp_Pnt Select3D_SensitivePoint::CenterOfGeometry() const
65 {
66   return myPoint;
67 }
68
69 //=======================================================================
70 // function : BoundingBox
71 // purpose  : Returns bounding box of the point. If location
72 //            transformation is set, it will be applied
73 //=======================================================================
74 Select3D_BndBox3d Select3D_SensitivePoint::BoundingBox()
75 {
76   return Select3D_BndBox3d (SelectMgr_Vec3 (myPoint.X(), myPoint.Y(), myPoint.Z()),
77                             SelectMgr_Vec3 (myPoint.X(), myPoint.Y(), myPoint.Z()));
78 }
79
80 //=======================================================================
81 // function : NbSubElements
82 // purpose  : Returns the amount of sub-entities in sensitive
83 //=======================================================================
84 Standard_Integer Select3D_SensitivePoint::NbSubElements() const
85 {
86   return 1;
87 }
88
89 //=======================================================================
90 //function : DumpJson
91 //purpose  :
92 //=======================================================================
93 void Select3D_SensitivePoint::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
94 {
95   OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
96   OCCT_DUMP_BASE_CLASS (theOStream, theDepth, Select3D_SensitiveEntity)
97 }