0025624: Visualization - selection is incorrect in perspective mode in a specific...
[occt.git] / src / Select3D / Select3D_SensitivePoly.lxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14#include<Select3D_Pnt.hxx>
15#include<Select3D_Pnt2d.hxx>
16#include<TColgp_HArray1OfPnt.hxx>
17#include<TColgp_Array1OfPnt2d.hxx>
18
19inline void Select3D_SensitivePoly
20::Points3D( Handle(TColgp_HArray1OfPnt)& theHArrayOfPnt )
21{
ceae62f0
A
22 Standard_Integer aSize = mypolyg.Size();
23 theHArrayOfPnt = new TColgp_HArray1OfPnt(1,aSize);
24 for(Standard_Integer anIndex = 1; anIndex <= aSize; anIndex++)
7fd59977 25 {
ceae62f0 26 theHArrayOfPnt->SetValue(anIndex, mypolyg.Pnt(anIndex-1));
7fd59977 27 }
28}
29
30inline void Select3D_SensitivePoly
31::Points2D( TColgp_Array1OfPnt2d& aArrayOf2dPnt)
32{
ceae62f0 33 for(Standard_Integer anIndex = 1; anIndex <= mypolyg.Size(); anIndex++)
7fd59977 34 {
ceae62f0 35 aArrayOf2dPnt.SetValue(anIndex, mypolyg.Pnt2d(anIndex-1));
7fd59977 36 }
37}
38
39