0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / RWStepElement / RWStepElement_RWSurfaceSectionFieldVarying.cxx
1 // Created on: 2002-12-12
2 // Created by: data exchange team
3 // Copyright (c) 2002-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 <RWStepElement_RWSurfaceSectionFieldVarying.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepElement_HArray1OfSurfaceSection.hxx>
24 #include <StepElement_SurfaceSection.hxx>
25 #include <StepElement_SurfaceSectionFieldVarying.hxx>
26
27 //=======================================================================
28 //function : RWStepElement_RWSurfaceSectionFieldVarying
29 //purpose  : 
30 //=======================================================================
31 RWStepElement_RWSurfaceSectionFieldVarying::RWStepElement_RWSurfaceSectionFieldVarying ()
32 {
33 }
34
35 //=======================================================================
36 //function : ReadStep
37 //purpose  : 
38 //=======================================================================
39
40 void RWStepElement_RWSurfaceSectionFieldVarying::ReadStep (const Handle(StepData_StepReaderData)& data,
41                                                            const Standard_Integer num,
42                                                            Handle(Interface_Check)& ach,
43                                                            const Handle(StepElement_SurfaceSectionFieldVarying) &ent) const
44 {
45   // Check number of parameters
46   if ( ! data->CheckNbParams(num,2,ach,"surface_section_field_varying") ) return;
47
48   // Own fields of SurfaceSectionFieldVarying
49
50   Handle(StepElement_HArray1OfSurfaceSection) aDefinitions;
51   Standard_Integer sub1 = 0;
52   if ( data->ReadSubList (num, 1, "definitions", ach, sub1) ) {
53     Standard_Integer nb0 = data->NbParams(sub1);
54     aDefinitions = new StepElement_HArray1OfSurfaceSection (1, nb0);
55     Standard_Integer num2 = sub1;
56     for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
57       Handle(StepElement_SurfaceSection) anIt0;
58       data->ReadEntity (num2, i0, "surface_section", ach, STANDARD_TYPE(StepElement_SurfaceSection), anIt0);
59       aDefinitions->SetValue(i0, anIt0);
60     }
61   }
62
63   Standard_Boolean aAdditionalNodeValues;
64   data->ReadBoolean (num, 2, "additional_node_values", ach, aAdditionalNodeValues);
65
66   // Initialize entity
67   ent->Init(aDefinitions,
68             aAdditionalNodeValues);
69 }
70
71 //=======================================================================
72 //function : WriteStep
73 //purpose  : 
74 //=======================================================================
75
76 void RWStepElement_RWSurfaceSectionFieldVarying::WriteStep (StepData_StepWriter& SW,
77                                                             const Handle(StepElement_SurfaceSectionFieldVarying) &ent) const
78 {
79
80   // Own fields of SurfaceSectionFieldVarying
81
82   SW.OpenSub();
83   for (Standard_Integer i0=1; i0 <= ent->Definitions()->Length(); i0++ ) {
84     Handle(StepElement_SurfaceSection) Var0 = ent->Definitions()->Value(i0);
85     SW.Send (Var0);
86   }
87   SW.CloseSub();
88
89   SW.SendBoolean (ent->AdditionalNodeValues());
90 }
91
92 //=======================================================================
93 //function : Share
94 //purpose  : 
95 //=======================================================================
96
97 void RWStepElement_RWSurfaceSectionFieldVarying::Share (const Handle(StepElement_SurfaceSectionFieldVarying) &ent,
98                                                         Interface_EntityIterator& iter) const
99 {
100
101   // Own fields of SurfaceSectionFieldVarying
102
103   for (Standard_Integer i1=1; i1 <= ent->Definitions()->Length(); i1++ ) {
104     Handle(StepElement_SurfaceSection) Var0 = ent->Definitions()->Value(i1);
105     iter.AddItem (Var0);
106   }
107 }