Warning, file /include/opencascade/BOPDS_Point.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef _BOPDS_Point_HeaderFile
0016 #define _BOPDS_Point_HeaderFile
0017
0018 #include <Standard.hxx>
0019 #include <Standard_DefineAlloc.hxx>
0020
0021 #include <gp_Pnt.hxx>
0022 #include <gp_Pnt2d.hxx>
0023 #include <Standard_Integer.hxx>
0024 class gp_Pnt;
0025 class gp_Pnt2d;
0026
0027
0028
0029
0030
0031 class BOPDS_Point
0032 {
0033 public:
0034
0035 DEFINE_STANDARD_ALLOC
0036
0037
0038
0039
0040 BOPDS_Point();
0041 virtual ~BOPDS_Point();
0042
0043
0044
0045
0046 void SetPnt (const gp_Pnt& thePnt);
0047
0048
0049
0050
0051 const gp_Pnt& Pnt() const;
0052
0053
0054
0055
0056 void SetPnt2D1 (const gp_Pnt2d& thePnt);
0057
0058
0059
0060
0061 const gp_Pnt2d& Pnt2D1() const;
0062
0063
0064
0065
0066 void SetPnt2D2 (const gp_Pnt2d& thePnt);
0067
0068
0069
0070
0071 const gp_Pnt2d& Pnt2D2() const;
0072
0073
0074
0075
0076 void SetIndex (const Standard_Integer theIndex);
0077
0078
0079
0080
0081 Standard_Integer Index() const;
0082
0083
0084
0085
0086 protected:
0087
0088
0089
0090 gp_Pnt myPnt;
0091 gp_Pnt2d myPnt2D1;
0092 gp_Pnt2d myPnt2D2;
0093 Standard_Integer myIndex;
0094
0095
0096 private:
0097
0098
0099
0100
0101
0102 };
0103
0104
0105 #include <BOPDS_Point.lxx>
0106
0107
0108
0109
0110
0111 #endif