File indexing completed on 2024-11-15 09:48:10
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _Poly_Triangle_HeaderFile
0018 #define _Poly_Triangle_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023 #include <Standard_Integer.hxx>
0024 #include <Standard_OutOfRange.hxx>
0025
0026
0027
0028
0029
0030 class Poly_Triangle
0031 {
0032 public:
0033
0034 DEFINE_STANDARD_ALLOC
0035
0036
0037 Poly_Triangle() { myNodes[0] = myNodes[1] = myNodes[2] = 0; }
0038
0039
0040
0041 Poly_Triangle (const Standard_Integer theN1, const Standard_Integer theN2, const Standard_Integer theN3)
0042 {
0043 myNodes[0] = theN1;
0044 myNodes[1] = theN2;
0045 myNodes[2] = theN3;
0046 }
0047
0048
0049 void Set (const Standard_Integer theN1, const Standard_Integer theN2, const Standard_Integer theN3)
0050 {
0051 myNodes[0] = theN1;
0052 myNodes[1] = theN2;
0053 myNodes[2] = theN3;
0054 }
0055
0056
0057
0058 void Set (const Standard_Integer theIndex, const Standard_Integer theNode)
0059 {
0060 Standard_OutOfRange_Raise_if(theIndex < 1 || theIndex > 3, "Poly_Triangle::Set(), invalid index");
0061 myNodes[theIndex - 1] = theNode;
0062 }
0063
0064
0065 void Get (Standard_Integer& theN1, Standard_Integer& theN2, Standard_Integer& theN3) const
0066 {
0067 theN1 = myNodes[0];
0068 theN2 = myNodes[1];
0069 theN3 = myNodes[2];
0070 }
0071
0072
0073
0074 Standard_Integer Value (const Standard_Integer theIndex) const
0075 {
0076 Standard_OutOfRange_Raise_if(theIndex < 1 || theIndex > 3, "Poly_Triangle::Value(), invalid index");
0077 return myNodes[theIndex - 1];
0078 }
0079
0080 Standard_Integer operator() (const Standard_Integer Index) const { return Value(Index); }
0081
0082
0083
0084 Standard_Integer& ChangeValue (const Standard_Integer theIndex)
0085 {
0086 Standard_OutOfRange_Raise_if(theIndex < 1 || theIndex > 3, "Poly_Triangle::ChangeValue(), invalid index");
0087 return myNodes[theIndex - 1];
0088 }
0089
0090 Standard_Integer& operator() (const Standard_Integer Index) { return ChangeValue(Index); }
0091
0092 protected:
0093
0094 Standard_Integer myNodes[3];
0095
0096 };
0097
0098 #endif