18941fa9532e2961c36759a7dca603fa0f3383b5
[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(SelectBasics_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   Standard_Real aDepth      = RealLast();
41   Standard_Real aDistToCOG  = RealLast();
42   if (!theMgr.Overlaps (myPoint, aDepth))
43   {
44     thePickResult = SelectBasics_PickResult (aDepth, aDistToCOG);
45     return Standard_False;
46   }
47
48   aDistToCOG = aDepth;
49   thePickResult = SelectBasics_PickResult (aDepth, aDistToCOG);
50   return Standard_True;
51 }
52
53 //=======================================================================
54 //function : GetConnected
55 //purpose  :
56 //=======================================================================
57 Handle(Select3D_SensitiveEntity) Select3D_SensitivePoint::GetConnected()
58 {
59   Handle(Select3D_SensitivePoint) aNewEntity = new Select3D_SensitivePoint (myOwnerId, myPoint);
60   return aNewEntity;
61 }
62
63 //=======================================================================
64 // function : CenterOfGeometry
65 // purpose  : Returns center of point. If location transformation
66 //            is set, it will be applied
67 //=======================================================================
68 gp_Pnt Select3D_SensitivePoint::CenterOfGeometry() const
69 {
70   return myPoint;
71 }
72
73 //=======================================================================
74 // function : BoundingBox
75 // purpose  : Returns bounding box of the point. If location
76 //            transformation is set, it will be applied
77 //=======================================================================
78 Select3D_BndBox3d Select3D_SensitivePoint::BoundingBox()
79 {
80   return Select3D_BndBox3d (SelectMgr_Vec3 (myPoint.X(), myPoint.Y(), myPoint.Z()),
81                             SelectMgr_Vec3 (myPoint.X(), myPoint.Y(), myPoint.Z()));
82 }
83
84 //=======================================================================
85 // function : NbSubElements
86 // purpose  : Returns the amount of sub-entities in sensitive
87 //=======================================================================
88 Standard_Integer Select3D_SensitivePoint::NbSubElements()
89 {
90   return 1;
91 }