0027739: Visualization, TKV3d - implement individual acceleration data structure...
[occt.git] / src / SelectMgr / SelectMgr_TriangularFrustumSet.hxx
CommitLineData
f751596e 1// Created on: 2014-05-22
2// Created by: Varvara POSKONINA
3// Copyright (c) 2005-2014 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _SelectMgr_TriangularFrustumSet_HeaderFile
17#define _SelectMgr_TriangularFrustumSet_HeaderFile
18
19#include <NCollection_Handle.hxx>
20#include <NCollection_List.hxx>
21
22#include <SelectMgr_BaseFrustum.hxx>
23#include <SelectMgr_TriangularFrustum.hxx>
24
c04c30b3 25typedef NCollection_List<Handle(SelectMgr_TriangularFrustum)> SelectMgr_TriangFrustums;
26typedef NCollection_List<Handle(SelectMgr_TriangularFrustum)>::Iterator SelectMgr_TriangFrustumsIter;
f751596e 27
28//! This class is used to handle polyline selection. The main principle of polyline selection
29//! algorithm is to split the polygon defined by polyline onto triangles. Than each of
30//! them is considered as a base for triangular frustum building. In other
31//! words, each triangle vertiex will be projected from 2d screen space to 3d world space
32//! onto near and far view frustum planes. Thus, the projected triangles make up the bases of
33//! selecting frustum. When the set of such frustums is created, the function determining
34//! selection iterates through triangular frustum set and searches for overlap with any
35//! frustum.
36class SelectMgr_TriangularFrustumSet : public SelectMgr_BaseFrustum
37{
38public:
39
40 SelectMgr_TriangularFrustumSet() {};
41
42 ~SelectMgr_TriangularFrustumSet() {};
43
44 //! Meshes polygon bounded by polyline. Than organizes a set of triangular frustums,
45 //! where each triangle's projection onto near and far view frustum planes is
46 //! considered as a frustum base
1f3913c6 47 Standard_EXPORT virtual void Build (const TColgp_Array1OfPnt2d& thePoints) Standard_OVERRIDE;
f751596e 48
49 //! Returns a copy of the frustum with all sub-volumes transformed according to the matrix given
099f3513 50 Standard_EXPORT virtual Handle(SelectMgr_BaseFrustum) ScaleAndTransform (const Standard_Integer theScale,
51 const gp_GTrsf& theTrsf) const Standard_OVERRIDE;
f751596e 52
3bf9a45f 53 Standard_EXPORT virtual Standard_Boolean Overlaps (const SelectMgr_Vec3& theMinPnt,
54 const SelectMgr_Vec3& theMaxPnt,
1f3913c6 55 Standard_Real& theDepth) Standard_OVERRIDE;
f751596e 56
1f3913c6 57 Standard_EXPORT virtual Standard_Boolean Overlaps (const SelectMgr_Vec3& theMinPnt,
58 const SelectMgr_Vec3& theMaxPnt,
59 Standard_Boolean* theInside) Standard_OVERRIDE;
f751596e 60
3bf9a45f 61 Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt,
1f3913c6 62 Standard_Real& theDepth) Standard_OVERRIDE;
f751596e 63
114b7bf1 64 Standard_EXPORT virtual Standard_Boolean Overlaps (const TColgp_Array1OfPnt& theArrayOfPnts,
1f3913c6 65 Select3D_TypeOfSensitivity theSensType,
66 Standard_Real& theDepth) Standard_OVERRIDE;
f751596e 67
3bf9a45f 68 Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt1,
69 const gp_Pnt& thePnt2,
1f3913c6 70 Standard_Real& theDepth) Standard_OVERRIDE;
f751596e 71
3bf9a45f 72 Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt1,
73 const gp_Pnt& thePnt2,
74 const gp_Pnt& thePnt3,
1f3913c6 75 Select3D_TypeOfSensitivity theSensType,
76 Standard_Real& theDepth) Standard_OVERRIDE;
f751596e 77
78private:
79
80 SelectMgr_TriangFrustums myFrustums;
81};
82
83#endif // _SelectMgr_TriangularFrustumSet_HeaderFile