summaryrefslogtreecommitdiff
path: root/src/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx
blob: a806305fd42963721109288fb85e5668399d11ad (plain)
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
// File:	RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx
// Created:	Wed Jan 22 17:31:43 2003 
// Author:	data exchange team
// Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
// Copyright:	Open CASCADE 2002

#include <RWStepFEA_RWCurveElementIntervalLinearlyVarying.ixx>
#include <StepElement_HArray1OfCurveElementSectionDefinition.hxx>
#include <StepElement_CurveElementSectionDefinition.hxx>

//=======================================================================
//function : RWStepFEA_RWCurveElementIntervalLinearlyVarying
//purpose  : 
//=======================================================================

RWStepFEA_RWCurveElementIntervalLinearlyVarying::RWStepFEA_RWCurveElementIntervalLinearlyVarying ()
{
}

//=======================================================================
//function : ReadStep
//purpose  : 
//=======================================================================

void RWStepFEA_RWCurveElementIntervalLinearlyVarying::ReadStep (const Handle(StepData_StepReaderData)& data,
                                                                const Standard_Integer num,
                                                                Handle(Interface_Check)& ach,
                                                                const Handle(StepFEA_CurveElementIntervalLinearlyVarying) &ent) const
{
  // Check number of parameters
  if ( ! data->CheckNbParams(num,3,ach,"curve_element_interval_linearly_varying") ) return;

  // Inherited fields of CurveElementInterval

  Handle(StepFEA_CurveElementLocation) aCurveElementInterval_FinishPosition;
  data->ReadEntity (num, 1, "curve_element_interval.finish_position", ach, STANDARD_TYPE(StepFEA_CurveElementLocation), aCurveElementInterval_FinishPosition);

  Handle(StepBasic_EulerAngles) aCurveElementInterval_EuAngles;
  data->ReadEntity (num, 2, "curve_element_interval.eu_angles", ach, STANDARD_TYPE(StepBasic_EulerAngles), aCurveElementInterval_EuAngles);

  // Own fields of CurveElementIntervalLinearlyVarying

  Handle(StepElement_HArray1OfCurveElementSectionDefinition) aSections;
  Standard_Integer sub3 = 0;
  if ( data->ReadSubList (num, 3, "sections", ach, sub3) ) {
    Standard_Integer nb0 = data->NbParams(sub3);
    aSections = new StepElement_HArray1OfCurveElementSectionDefinition (1, nb0);
    Standard_Integer num2 = sub3;
    for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
      Handle(StepElement_CurveElementSectionDefinition) anIt0;
      data->ReadEntity (num2, i0, "curve_element_section_definition", ach, STANDARD_TYPE(StepElement_CurveElementSectionDefinition), anIt0);
      aSections->SetValue(i0, anIt0);
    }
  }

  // Initialize entity
  ent->Init(aCurveElementInterval_FinishPosition,
            aCurveElementInterval_EuAngles,
            aSections);
}

//=======================================================================
//function : WriteStep
//purpose  : 
//=======================================================================

void RWStepFEA_RWCurveElementIntervalLinearlyVarying::WriteStep (StepData_StepWriter& SW,
                                                                 const Handle(StepFEA_CurveElementIntervalLinearlyVarying) &ent) const
{

  // Inherited fields of CurveElementInterval

  SW.Send (ent->StepFEA_CurveElementInterval::FinishPosition());

  SW.Send (ent->StepFEA_CurveElementInterval::EuAngles());

  // Own fields of CurveElementIntervalLinearlyVarying

  SW.OpenSub();
  for (Standard_Integer i2=1; i2 <= ent->Sections()->Length(); i2++ ) {
    Handle(StepElement_CurveElementSectionDefinition) Var0 = ent->Sections()->Value(i2);
    SW.Send (Var0);
  }
  SW.CloseSub();
}

//=======================================================================
//function : Share
//purpose  : 
//=======================================================================

void RWStepFEA_RWCurveElementIntervalLinearlyVarying::Share (const Handle(StepFEA_CurveElementIntervalLinearlyVarying) &ent,
                                                             Interface_EntityIterator& iter) const
{

  // Inherited fields of CurveElementInterval

  iter.AddItem (ent->StepFEA_CurveElementInterval::FinishPosition());

  iter.AddItem (ent->StepFEA_CurveElementInterval::EuAngles());

  // Own fields of CurveElementIntervalLinearlyVarying

  for (Standard_Integer i3=1; i3 <= ent->Sections()->Length(); i3++ ) {
    Handle(StepElement_CurveElementSectionDefinition) Var0 = ent->Sections()->Value(i3);
    iter.AddItem (Var0);
  }
}