Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/opencascade/BOPDS_Point.lxx is written in an unsupported language. File is not indexed.

0001 // Created by: Peter KURNEV
0002 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0003 //
0004 // This file is part of Open CASCADE Technology software library.
0005 //
0006 // This library is free software; you can redistribute it and/or modify it under
0007 // the terms of the GNU Lesser General Public License version 2.1 as published
0008 // by the Free Software Foundation, with special exception defined in the file
0009 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0010 // distribution for complete text of the license and disclaimer of any warranty.
0011 //
0012 // Alternatively, this file may be used under the terms of Open CASCADE
0013 // commercial license or contractual agreement.
0014 
0015 //=======================================================================
0016 //function : 
0017 //purpose  : 
0018 //=======================================================================
0019   inline BOPDS_Point::BOPDS_Point()
0020 {
0021   myPnt.SetCoord(99.,99.,99.);
0022   myPnt2D1.SetCoord(99.,99.);
0023   myPnt2D2=myPnt2D1;
0024   myIndex=-1;
0025 }
0026 //=======================================================================
0027 //function : ~
0028 //purpose  : 
0029 //=======================================================================
0030   inline BOPDS_Point::~BOPDS_Point()
0031 {
0032 }
0033 //=======================================================================
0034 //function : SetIndex
0035 //purpose  : 
0036 //=======================================================================
0037   inline void BOPDS_Point::SetIndex(const Standard_Integer theIndex)
0038 {
0039   myIndex=theIndex;
0040 }
0041 //=======================================================================
0042 //function : Index
0043 //purpose  : 
0044 //=======================================================================
0045   inline Standard_Integer BOPDS_Point::Index()const
0046 {
0047   return myIndex;
0048 }
0049 //=======================================================================
0050 //function : SetPnt
0051 //purpose  : 
0052 //=======================================================================
0053   inline void BOPDS_Point::SetPnt(const gp_Pnt& thePnt)
0054 {
0055   myPnt=thePnt;
0056 }
0057 //=======================================================================
0058 //function : Pnt
0059 //purpose  : 
0060 //=======================================================================
0061   inline const gp_Pnt& BOPDS_Point::Pnt()const
0062 {
0063   return myPnt;
0064 }
0065 //=======================================================================
0066 //function : SetPnt2D1
0067 //purpose  : 
0068 //=======================================================================
0069   inline void BOPDS_Point::SetPnt2D1(const gp_Pnt2d& thePnt)
0070 {
0071   myPnt2D1=thePnt;
0072 }
0073 //=======================================================================
0074 //function : Pnt2D1
0075 //purpose  : 
0076 //=======================================================================
0077   inline const gp_Pnt2d& BOPDS_Point::Pnt2D1()const
0078 {
0079   return myPnt2D1;
0080 }
0081 //=======================================================================
0082 //function : SetPnt2D2
0083 //purpose  : 
0084 //=======================================================================
0085   inline void BOPDS_Point::SetPnt2D2(const gp_Pnt2d& thePnt)
0086 {
0087   myPnt2D2=thePnt;
0088 }
0089 //=======================================================================
0090 //function : Pnt2D2
0091 //purpose  : 
0092 //=======================================================================
0093   inline const gp_Pnt2d& BOPDS_Point::Pnt2D2()const
0094 {
0095   return myPnt2D2;
0096 }