0030416: Incorrect implementation of the method Bnd_OBB::SquareExtent
[occt.git] / src / Select3D / Select3D_SensitiveSegment.cxx
CommitLineData
b311480e 1// Created on: 1995-01-25
2// Created by: Mister rmi
3// Copyright (c) 1995-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
f751596e 17#include <Select3D_SensitiveSegment.hxx>
7fd59977 18#include <gp_Vec.hxx>
f751596e 19#include <TopLoc_Location.hxx>
7fd59977 20#include <Precision.hxx>
7fd59977 21
7fd59977 22
92efcf78 23IMPLEMENT_STANDARD_RTTIEXT(Select3D_SensitiveSegment,Select3D_SensitiveEntity)
24
7fd59977 25//=====================================================
26// Function : Create
f751596e 27// Purpose : Constructor
7fd59977 28//=====================================================
f751596e 29Select3D_SensitiveSegment::Select3D_SensitiveSegment (const Handle(SelectBasics_EntityOwner)& theOwnerId,
30 const gp_Pnt& theFirstPnt,
31 const gp_Pnt& theLastPnt)
32: Select3D_SensitiveEntity (theOwnerId)
7fd59977 33{
f751596e 34 myStart = theFirstPnt;
35 myEnd = theLastPnt;
7fd59977 36}
37
f751596e 38// =======================================================================
39// function : Matches
40// purpose : Checks whether the segment overlaps current selecting volume
41// =======================================================================
42Standard_Boolean Select3D_SensitiveSegment::Matches (SelectBasics_SelectingVolumeManager& theMgr,
43 SelectBasics_PickResult& thePickResult)
7fd59977 44{
2157d6ac 45 if (!theMgr.IsOverlapAllowed()) // check for inclusion
ac04d101 46 {
17017555 47 return theMgr.Overlaps (myStart, thePickResult) && theMgr.Overlaps (myEnd, thePickResult);
7fd59977 48 }
4269bd1b 49
17017555 50 if (!theMgr.Overlaps (myStart, myEnd, thePickResult)) // check for overlap
2157d6ac 51 {
52 return Standard_False;
53 }
54
17017555 55 thePickResult.SetDistToGeomCenter (theMgr.DistToGeometryCenter(CenterOfGeometry()));
2157d6ac 56 return Standard_True;
7fd59977 57}
58
7fd59977 59//=======================================================================
f751596e 60//function : GetConnected
aec37c15 61//purpose :
7fd59977 62//=======================================================================
f751596e 63Handle(Select3D_SensitiveEntity) Select3D_SensitiveSegment::GetConnected()
aec37c15 64{
f751596e 65 Handle(Select3D_SensitiveSegment) aNewEntity =
66 new Select3D_SensitiveSegment (myOwnerId, myStart, myEnd);
7fd59977 67
f751596e 68 return aNewEntity;
7fd59977 69}
70
7fd59977 71//=======================================================================
f751596e 72// function : CenterOfGeometry
73// purpose : Returns center of the segment. If location transformation
74// is set, it will be applied
7fd59977 75//=======================================================================
f751596e 76gp_Pnt Select3D_SensitiveSegment::CenterOfGeometry() const
7fd59977 77{
f751596e 78 return (myStart.XYZ() + myEnd.XYZ()) * 0.5;
7fd59977 79}
80
81//=======================================================================
f751596e 82// function : BoundingBox
83// purpose : Returns bounding box of the segment. If location
84// transformation is set, it will be applied
7fd59977 85//=======================================================================
f751596e 86Select3D_BndBox3d Select3D_SensitiveSegment::BoundingBox()
7fd59977 87{
f751596e 88 const SelectMgr_Vec3 aMinPnt (Min (myStart.X(), myEnd.X()),
89 Min (myStart.Y(), myEnd.Y()),
90 Min (myStart.Z(), myEnd.Z()));
91 const SelectMgr_Vec3 aMaxPnt (Max (myStart.X(), myEnd.X()),
92 Max (myStart.Y(), myEnd.Y()),
93 Max (myStart.Z(), myEnd.Z()));
94 return Select3D_BndBox3d (aMinPnt, aMaxPnt);
7fd59977 95}
f751596e 96
7fd59977 97//=======================================================================
f751596e 98// function : NbSubElements
99// purpose : Returns the amount of points
7fd59977 100//=======================================================================
f751596e 101Standard_Integer Select3D_SensitiveSegment::NbSubElements()
7fd59977 102{
f751596e 103 return 2;
7fd59977 104}