0030058: Visualization, Select3D_SensitivePrimitiveArray - the selection is not fast...
[occt.git] / src / RWStepFEA / RWStepFEA_RWElementGeometricRelationship.cxx
1 // Created on: 2003-02-04
2 // Created by: data exchange team
3 // Copyright (c) 2003-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
17
18 #include <Interface_Check.hxx>
19 #include <Interface_EntityIterator.hxx>
20 #include <RWStepFEA_RWElementGeometricRelationship.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepElement_AnalysisItemWithinRepresentation.hxx>
24 #include <StepFEA_ElementGeometricRelationship.hxx>
25
26 //=======================================================================
27 //function : RWStepFEA_RWElementGeometricRelationship
28 //purpose  : 
29 //=======================================================================
30 RWStepFEA_RWElementGeometricRelationship::RWStepFEA_RWElementGeometricRelationship ()
31 {
32 }
33
34 //=======================================================================
35 //function : ReadStep
36 //purpose  : 
37 //=======================================================================
38
39 void RWStepFEA_RWElementGeometricRelationship::ReadStep (const Handle(StepData_StepReaderData)& data,
40                                                          const Standard_Integer num,
41                                                          Handle(Interface_Check)& ach,
42                                                          const Handle(StepFEA_ElementGeometricRelationship) &ent) const
43 {
44   // Check number of parameters
45   if ( ! data->CheckNbParams(num,3,ach,"element_geometric_relationship") ) return;
46
47   // Own fields of ElementGeometricRelationship
48
49   StepFEA_ElementOrElementGroup aElementRef;
50   data->ReadEntity (num, 1, "element_ref", ach, aElementRef);
51
52   Handle(StepElement_AnalysisItemWithinRepresentation) aItem;
53   data->ReadEntity (num, 2, "item", ach, STANDARD_TYPE(StepElement_AnalysisItemWithinRepresentation), aItem);
54
55   StepElement_ElementAspect aAspect;
56   data->ReadEntity (num, 3, "aspect", ach, aAspect);
57
58   // Initialize entity
59   ent->Init(aElementRef,
60             aItem,
61             aAspect);
62 }
63
64 //=======================================================================
65 //function : WriteStep
66 //purpose  : 
67 //=======================================================================
68
69 void RWStepFEA_RWElementGeometricRelationship::WriteStep (StepData_StepWriter& SW,
70                                                           const Handle(StepFEA_ElementGeometricRelationship) &ent) const
71 {
72
73   // Own fields of ElementGeometricRelationship
74
75   SW.Send (ent->ElementRef().Value());
76
77   SW.Send (ent->Item());
78
79   SW.Send (ent->Aspect().Value());
80 }
81
82 //=======================================================================
83 //function : Share
84 //purpose  : 
85 //=======================================================================
86
87 void RWStepFEA_RWElementGeometricRelationship::Share (const Handle(StepFEA_ElementGeometricRelationship) &ent,
88                                                       Interface_EntityIterator& iter) const
89 {
90
91   // Own fields of ElementGeometricRelationship
92
93   iter.AddItem (ent->ElementRef().Value());
94
95   iter.AddItem (ent->Item());
96
97   iter.AddItem (ent->Aspect().Value());
98 }