File indexing completed on 2025-01-18 10:04:08
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _Intf_Interference_HeaderFile
0018 #define _Intf_Interference_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023
0024 #include <Intf_SeqOfSectionPoint.hxx>
0025 #include <Intf_SeqOfSectionLine.hxx>
0026 #include <Intf_SeqOfTangentZone.hxx>
0027 #include <Standard_Boolean.hxx>
0028 class Intf_SectionPoint;
0029 class Intf_SectionLine;
0030 class Intf_TangentZone;
0031
0032
0033
0034
0035
0036
0037 class Intf_Interference
0038 {
0039 public:
0040
0041 DEFINE_STANDARD_ALLOC
0042
0043
0044
0045
0046 Standard_Integer NbSectionPoints() const;
0047
0048
0049
0050 const Intf_SectionPoint& PntValue (const Standard_Integer Index) const;
0051
0052
0053
0054 Standard_Integer NbSectionLines() const;
0055
0056
0057
0058 const Intf_SectionLine& LineValue (const Standard_Integer Index) const;
0059
0060
0061 Standard_Integer NbTangentZones() const;
0062
0063
0064
0065 const Intf_TangentZone& ZoneValue (const Standard_Integer Index) const;
0066
0067
0068 Standard_Real GetTolerance() const;
0069
0070
0071
0072 Standard_EXPORT Standard_Boolean Contains (const Intf_SectionPoint& ThePnt) const;
0073
0074
0075
0076
0077 Standard_EXPORT Standard_Boolean Insert (const Intf_TangentZone& TheZone);
0078
0079
0080
0081 Standard_EXPORT void Insert (const Intf_SectionPoint& pdeb, const Intf_SectionPoint& pfin);
0082
0083 Standard_EXPORT void Dump() const;
0084
0085
0086
0087
0088 protected:
0089
0090
0091 Standard_EXPORT Intf_Interference(const Standard_Boolean Self);
0092
0093
0094 ~Intf_Interference () {}
0095
0096
0097 Standard_EXPORT void SelfInterference (const Standard_Boolean Self);
0098
0099
0100 Intf_SeqOfSectionPoint mySPoins;
0101 Intf_SeqOfSectionLine mySLines;
0102 Intf_SeqOfTangentZone myTZones;
0103 Standard_Boolean SelfIntf;
0104 Standard_Real Tolerance;
0105
0106
0107 private:
0108
0109
0110
0111
0112
0113 };
0114
0115
0116 #include <Intf_Interference.lxx>
0117
0118
0119
0120
0121
0122 #endif