0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / RWStepElement / RWStepElement_RWUniformSurfaceSection.cxx
CommitLineData
b311480e 1// Created on: 2002-12-12
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2002-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
7fd59977 17
42cf5bc1 18#include <Interface_Check.hxx>
19#include <Interface_EntityIterator.hxx>
20#include <RWStepElement_RWUniformSurfaceSection.hxx>
21#include <StepData_StepReaderData.hxx>
22#include <StepData_StepWriter.hxx>
23#include <StepElement_UniformSurfaceSection.hxx>
7fd59977 24
25//=======================================================================
26//function : RWStepElement_RWUniformSurfaceSection
27//purpose :
28//=======================================================================
7fd59977 29RWStepElement_RWUniformSurfaceSection::RWStepElement_RWUniformSurfaceSection ()
30{
31}
32
33//=======================================================================
34//function : ReadStep
35//purpose :
36//=======================================================================
37
38void RWStepElement_RWUniformSurfaceSection::ReadStep (const Handle(StepData_StepReaderData)& data,
39 const Standard_Integer num,
40 Handle(Interface_Check)& ach,
41 const Handle(StepElement_UniformSurfaceSection) &ent) const
42{
43 // Check number of parameters
44 if ( ! data->CheckNbParams(num,6,ach,"uniform_surface_section") ) return;
45
46 // Inherited fields of SurfaceSection
47
48 StepElement_MeasureOrUnspecifiedValue aSurfaceSection_Offset;
49 data->ReadEntity (num, 1, "surface_section.offset", ach, aSurfaceSection_Offset);
50
51 StepElement_MeasureOrUnspecifiedValue aSurfaceSection_NonStructuralMass;
52 data->ReadEntity (num, 2, "surface_section.non_structural_mass", ach, aSurfaceSection_NonStructuralMass);
53
54 StepElement_MeasureOrUnspecifiedValue aSurfaceSection_NonStructuralMassOffset;
55 data->ReadEntity (num, 3, "surface_section.non_structural_mass_offset", ach, aSurfaceSection_NonStructuralMassOffset);
56
57 // Own fields of UniformSurfaceSection
58
59 Standard_Real aThickness;
60 data->ReadReal (num, 4, "thickness", ach, aThickness);
61
62 StepElement_MeasureOrUnspecifiedValue aBendingThickness;
63 data->ReadEntity (num, 5, "bending_thickness", ach, aBendingThickness);
64
65 StepElement_MeasureOrUnspecifiedValue aShearThickness;
66 data->ReadEntity (num, 6, "shear_thickness", ach, aShearThickness);
67
68 // Initialize entity
69 ent->Init(aSurfaceSection_Offset,
70 aSurfaceSection_NonStructuralMass,
71 aSurfaceSection_NonStructuralMassOffset,
72 aThickness,
73 aBendingThickness,
74 aShearThickness);
75}
76
77//=======================================================================
78//function : WriteStep
79//purpose :
80//=======================================================================
81
82void RWStepElement_RWUniformSurfaceSection::WriteStep (StepData_StepWriter& SW,
83 const Handle(StepElement_UniformSurfaceSection) &ent) const
84{
85
86 // Inherited fields of SurfaceSection
87
88 SW.Send (ent->StepElement_SurfaceSection::Offset().Value());
89
90 SW.Send (ent->StepElement_SurfaceSection::NonStructuralMass().Value());
91
92 SW.Send (ent->StepElement_SurfaceSection::NonStructuralMassOffset().Value());
93
94 // Own fields of UniformSurfaceSection
95
96 SW.Send (ent->Thickness());
97
98 SW.Send (ent->BendingThickness().Value());
99
100 SW.Send (ent->ShearThickness().Value());
101}
102
103//=======================================================================
104//function : Share
105//purpose :
106//=======================================================================
107
35e08fe8 108void RWStepElement_RWUniformSurfaceSection::Share (const Handle(StepElement_UniformSurfaceSection) &,
109 Interface_EntityIterator&) const
7fd59977 110{
111
112 // Inherited fields of SurfaceSection
113/* CKY 17JUN04. Content is made of REAL and ENUM. No entity !
114 iter.AddItem (ent->StepElement_SurfaceSection::Offset().Value());
115
116 iter.AddItem (ent->StepElement_SurfaceSection::NonStructuralMass().Value());
117
118 iter.AddItem (ent->StepElement_SurfaceSection::NonStructuralMassOffset().Value());
119
120 // Own fields of UniformSurfaceSection
121
122 iter.AddItem (ent->BendingThickness().Value());
123
124 iter.AddItem (ent->ShearThickness().Value());
125*/
126}