File indexing completed on 2025-01-18 10:03:59
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _IGESDimen_DiameterDimension_HeaderFile
0018 #define _IGESDimen_DiameterDimension_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <gp_XY.hxx>
0024 #include <IGESData_IGESEntity.hxx>
0025 class IGESDimen_GeneralNote;
0026 class IGESDimen_LeaderArrow;
0027 class gp_Pnt2d;
0028
0029
0030 class IGESDimen_DiameterDimension;
0031 DEFINE_STANDARD_HANDLE(IGESDimen_DiameterDimension, IGESData_IGESEntity)
0032
0033
0034
0035
0036 class IGESDimen_DiameterDimension : public IGESData_IGESEntity
0037 {
0038
0039 public:
0040
0041
0042 Standard_EXPORT IGESDimen_DiameterDimension();
0043
0044
0045
0046
0047
0048
0049
0050 Standard_EXPORT void Init (const Handle(IGESDimen_GeneralNote)& aNote, const Handle(IGESDimen_LeaderArrow)& aLeader, const Handle(IGESDimen_LeaderArrow)& anotherLeader, const gp_XY& aCenter);
0051
0052
0053 Standard_EXPORT Handle(IGESDimen_GeneralNote) Note() const;
0054
0055
0056 Standard_EXPORT Handle(IGESDimen_LeaderArrow) FirstLeader() const;
0057
0058
0059 Standard_EXPORT Standard_Boolean HasSecondLeader() const;
0060
0061
0062 Standard_EXPORT Handle(IGESDimen_LeaderArrow) SecondLeader() const;
0063
0064
0065 Standard_EXPORT gp_Pnt2d Center() const;
0066
0067
0068
0069 Standard_EXPORT gp_Pnt2d TransformedCenter() const;
0070
0071
0072
0073
0074 DEFINE_STANDARD_RTTIEXT(IGESDimen_DiameterDimension,IGESData_IGESEntity)
0075
0076 protected:
0077
0078
0079
0080
0081 private:
0082
0083
0084 Handle(IGESDimen_GeneralNote) theNote;
0085 Handle(IGESDimen_LeaderArrow) theFirstLeader;
0086 Handle(IGESDimen_LeaderArrow) theSecondLeader;
0087 gp_XY theCenter;
0088
0089
0090 };
0091
0092
0093
0094
0095
0096
0097
0098 #endif