// 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 #include #include //======================================================================= //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); } }