File indexing completed on 2025-01-18 10:03:55
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _IGESAppli_NodalResults_HeaderFile
0018 #define _IGESAppli_NodalResults_HeaderFile
0019
0020 #include <Standard.hxx>
0021
0022 #include <Standard_Integer.hxx>
0023 #include <Standard_Real.hxx>
0024 #include <TColStd_HArray1OfInteger.hxx>
0025 #include <IGESAppli_HArray1OfNode.hxx>
0026 #include <TColStd_HArray2OfReal.hxx>
0027 #include <IGESData_IGESEntity.hxx>
0028 class IGESDimen_GeneralNote;
0029 class IGESAppli_Node;
0030
0031
0032 class IGESAppli_NodalResults;
0033 DEFINE_STANDARD_HANDLE(IGESAppli_NodalResults, IGESData_IGESEntity)
0034
0035
0036
0037
0038 class IGESAppli_NodalResults : public IGESData_IGESEntity
0039 {
0040
0041 public:
0042
0043
0044 Standard_EXPORT IGESAppli_NodalResults();
0045
0046
0047
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058 Standard_EXPORT void Init (const Handle(IGESDimen_GeneralNote)& aNote, const Standard_Integer aNumber, const Standard_Real aTime, const Handle(TColStd_HArray1OfInteger)& allNodeIdentifiers, const Handle(IGESAppli_HArray1OfNode)& allNodes, const Handle(TColStd_HArray2OfReal)& allData);
0059
0060
0061
0062 Standard_EXPORT void SetFormNumber (const Standard_Integer form);
0063
0064
0065 Standard_EXPORT Handle(IGESDimen_GeneralNote) Note() const;
0066
0067
0068 Standard_EXPORT Standard_Integer SubCaseNumber() const;
0069
0070
0071
0072
0073 Standard_EXPORT Standard_Real Time() const;
0074
0075
0076 Standard_EXPORT Standard_Integer NbData() const;
0077
0078
0079 Standard_EXPORT Standard_Integer NbNodes() const;
0080
0081
0082
0083 Standard_EXPORT Standard_Integer NodeIdentifier (const Standard_Integer Index) const;
0084
0085
0086
0087 Standard_EXPORT Handle(IGESAppli_Node) Node (const Standard_Integer Index) const;
0088
0089
0090
0091
0092 Standard_EXPORT Standard_Real Data (const Standard_Integer NodeNum, const Standard_Integer DataNum) const;
0093
0094
0095
0096
0097 DEFINE_STANDARD_RTTIEXT(IGESAppli_NodalResults,IGESData_IGESEntity)
0098
0099 protected:
0100
0101
0102
0103
0104 private:
0105
0106
0107 Handle(IGESDimen_GeneralNote) theNote;
0108 Standard_Integer theSubCaseNum;
0109 Standard_Real theTime;
0110 Handle(TColStd_HArray1OfInteger) theNodeIdentifiers;
0111 Handle(IGESAppli_HArray1OfNode) theNodes;
0112 Handle(TColStd_HArray2OfReal) theData;
0113
0114
0115 };
0116
0117
0118
0119
0120
0121
0122
0123 #endif