1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#include <RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.ixx>
#include <StepRepr_Representation.hxx>
#include <StepRepr_Transformation.hxx>
#include <Interface_EntityIterator.hxx>
#include <StepRepr_ShapeRepresentationRelationshipWithTransformation.hxx>
RWStepRepr_RWShapeRepresentationRelationshipWithTransformation::RWStepRepr_RWShapeRepresentationRelationshipWithTransformation () {}
void RWStepRepr_RWShapeRepresentationRelationshipWithTransformation::ReadStep
(const Handle(StepData_StepReaderData)& data,
const Standard_Integer num0,
Handle(Interface_Check)& ach,
const Handle(StepRepr_ShapeRepresentationRelationshipWithTransformation)& ent) const
{
// Complex entity
// REPR_RLTS,REPR_RLTS_WITH_TR,SHAPE_REPR_RLTS
// But same fields as RepresentationRelationshipWithTransformation
// --- Instance of plex componant RepresentationRelationship ---
Standard_Integer num = 0; // num0;
data->NamedForComplex("REPRESENTATION_RELATIONSHIP RPRRLT",num0,num,ach);
// --- Number of Parameter Control ---
if (!data->CheckNbParams(num,4,ach,"representation_relationship")) return;
// --- inherited field : name ---
Handle(TCollection_HAsciiString) aName;
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
data->ReadString (num,1,"name",ach,aName);
// --- inherited field : description ---
Handle(TCollection_HAsciiString) aDescription;
if (data->IsParamDefined (num,2)) { //abv 08.10.99 TRJ2
data->ReadString (num,2,"description",ach,aDescription);
}
// --- inherited field : rep1 ---
Handle(StepRepr_Representation) aRep1;
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
data->ReadEntity(num, 3,"rep_1", ach, STANDARD_TYPE(StepRepr_Representation), aRep1);
// --- inherited field : rep2 ---
Handle(StepRepr_Representation) aRep2;
//szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
data->ReadEntity(num, 4,"rep_2", ach, STANDARD_TYPE(StepRepr_Representation), aRep2);
// --- Instance of plex componant RepresentationRelationshipWithTransformation ---
data->NamedForComplex("REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION RRWT",num0,num,ach);
if (!data->CheckNbParams(num,1,ach,"representation_relationship_with_transformation")) return;
// --- own field : transformation_operator
StepRepr_Transformation aTrans;
//szv#4:S4163:12Mar99 `Standard_Boolean stat5 =` not needed
data->ReadEntity(num,1,"transformation_operator",ach,aTrans);
// --- Instance of plex componant ShapeRepresentationRelationship ---
data->NamedForComplex("SHAPE_REPRESENTATION_RELATIONSHIP SHRPRL",num0,num,ach);
if (!data->CheckNbParams(num,0,ach,"shape_representation_relationship")) return;
//--- Initialisation of the read entity ---
ent->Init(aName, aDescription, aRep1, aRep2, aTrans);
}
void RWStepRepr_RWShapeRepresentationRelationshipWithTransformation::WriteStep
(StepData_StepWriter& SW,
const Handle(StepRepr_ShapeRepresentationRelationshipWithTransformation)& ent) const
{
// --- Instance of plex componant RepresentationRelationship ---
SW.StartEntity ("REPRESENTATION_RELATIONSHIP");
// --- inherited field : name ---
SW.Send(ent->Name());
// --- inherited field : description ---
SW.Send(ent->Description());
// --- inherited field : rep1 ---
SW.Send(ent->Rep1());
// --- inherited field : rep2 ---
SW.Send(ent->Rep2());
// --- Instance of plex componant RepresentationRelationshipWithTransformation ---
SW.StartEntity ("REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION");
SW.Send(ent->TransformationOperator().Value());
// --- Instance of plex componant ShapeRepresentationRelationship ---
SW.StartEntity ("SHAPE_REPRESENTATION_RELATIONSHIP");
}
void RWStepRepr_RWShapeRepresentationRelationshipWithTransformation::Share(const Handle(StepRepr_ShapeRepresentationRelationshipWithTransformation)& ent, Interface_EntityIterator& iter) const
{
iter.GetOneItem(ent->Rep1());
iter.GetOneItem(ent->Rep2());
iter.GetOneItem(ent->TransformationOperator().Value());
}
|