2d075c05bea787132c55e73a88c3b47582f34af3
[occt.git] / src / BOPDS / BOPDS_Point.lxx
1 // Created by: Peter KURNEV
2 // Copyright (c) 1999-2012 OPEN CASCADE SAS
3 //
4 // The content of this file is subject to the Open CASCADE Technology Public
5 // License Version 6.5 (the "License"). You may not use the content of this file
6 // except in compliance with the License. Please obtain a copy of the License
7 // at http://www.opencascade.org and read it completely before using this file.
8 //
9 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
10 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
11 //
12 // The Original Code and all software distributed under the License is
13 // distributed on an "AS IS" basis, without warranty of any kind, and the
14 // Initial Developer hereby disclaims all such warranties, including without
15 // limitation, any warranties of merchantability, fitness for a particular
16 // purpose or non-infringement. Please see the License for the specific terms
17 // and conditions governing the rights and limitations under the License.
18
19 //=======================================================================
20 //function : 
21 //purpose  : 
22 //=======================================================================
23   inline BOPDS_Point::BOPDS_Point()
24 {
25   myPnt.SetCoord(99.,99.,99.);
26   myPnt2D1.SetCoord(99.,99.);
27   myPnt2D2=myPnt2D1;
28   myIndex=-1;
29 }
30 //=======================================================================
31 //function : ~
32 //purpose  : 
33 //=======================================================================
34   inline BOPDS_Point::~BOPDS_Point()
35 {
36 }
37 //=======================================================================
38 //function : SetIndex
39 //purpose  : 
40 //=======================================================================
41   inline void BOPDS_Point::SetIndex(const Standard_Integer theIndex)
42 {
43   myIndex=theIndex;
44 }
45 //=======================================================================
46 //function : Index
47 //purpose  : 
48 //=======================================================================
49   inline Standard_Integer BOPDS_Point::Index()const
50 {
51   return myIndex;
52 }
53 //=======================================================================
54 //function : SetPnt
55 //purpose  : 
56 //=======================================================================
57   inline void BOPDS_Point::SetPnt(const gp_Pnt& thePnt)
58 {
59   myPnt=thePnt;
60 }
61 //=======================================================================
62 //function : Pnt
63 //purpose  : 
64 //=======================================================================
65   inline const gp_Pnt& BOPDS_Point::Pnt()const
66 {
67   return myPnt;
68 }
69 //=======================================================================
70 //function : SetPnt2D1
71 //purpose  : 
72 //=======================================================================
73   inline void BOPDS_Point::SetPnt2D1(const gp_Pnt2d& thePnt)
74 {
75   myPnt2D1=thePnt;
76 }
77 //=======================================================================
78 //function : Pnt2D1
79 //purpose  : 
80 //=======================================================================
81   inline const gp_Pnt2d& BOPDS_Point::Pnt2D1()const
82 {
83   return myPnt2D1;
84 }
85 //=======================================================================
86 //function : SetPnt2D2
87 //purpose  : 
88 //=======================================================================
89   inline void BOPDS_Point::SetPnt2D2(const gp_Pnt2d& thePnt)
90 {
91   myPnt2D2=thePnt;
92 }
93 //=======================================================================
94 //function : Pnt2D2
95 //purpose  : 
96 //=======================================================================
97   inline const gp_Pnt2d& BOPDS_Point::Pnt2D2()const
98 {
99   return myPnt2D2;
100 }