// Created on : Thu Mar 24 18:30:12 2022 // Created by: snn // Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V2.0 // Copyright (c) Open CASCADE 2022 // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include #include #include #include #include #include #include #include #include #include //======================================================================= //function : RWStepVisual_RWTessellatedEdge //purpose : //======================================================================= RWStepVisual_RWTessellatedEdge::RWStepVisual_RWTessellatedEdge() {} //======================================================================= //function : ReadStep //purpose : //======================================================================= void RWStepVisual_RWTessellatedEdge::ReadStep (const Handle(StepData_StepReaderData)& theData, const Standard_Integer theNum, Handle(Interface_Check)& theCheck, const Handle(StepVisual_TessellatedEdge)& theEnt) const { // Check number of parameters if (!theData->CheckNbParams(theNum, 4, theCheck, "tessellated_edge")) { return; } // Inherited fields of RepresentationItem Handle(TCollection_HAsciiString) aRepresentationItem_Name; theData->ReadString(theNum, 1, "representation_item.name", theCheck, aRepresentationItem_Name); // Own fields of TessellatedEdge Handle(StepVisual_CoordinatesList) aCoordinates; theData->ReadEntity(theNum, 2, "coordinates", theCheck, STANDARD_TYPE(StepVisual_CoordinatesList), aCoordinates); StepVisual_EdgeOrCurve aGeometricLink; Standard_Boolean hasGeometricLink = Standard_True; if (theData->IsParamDefined(theNum, 3)) { theData->ReadEntity(theNum, 3, "geometric_link", theCheck, aGeometricLink); } else { hasGeometricLink = Standard_False; aGeometricLink = StepVisual_EdgeOrCurve(); } Handle(TColStd_HArray1OfInteger) aLineStrip; Standard_Integer sub4 = 0; if (theData->ReadSubList(theNum, 4, "line_strip", theCheck, sub4)) { Standard_Integer nb0 = theData->NbParams(sub4); aLineStrip = new TColStd_HArray1OfInteger(1, nb0); Standard_Integer num2 = sub4; for (Standard_Integer i0 = 1; i0 <= nb0; i0++) { Standard_Integer anIt0; theData->ReadInteger(num2, i0, "integer", theCheck, anIt0); aLineStrip->SetValue(i0, anIt0); } } // Initialize entity theEnt->Init(aRepresentationItem_Name, aCoordinates, hasGeometricLink, aGeometricLink, aLineStrip); } //======================================================================= //function : WriteStep //purpose : //======================================================================= void RWStepVisual_RWTessellatedEdge::WriteStep (StepData_StepWriter& theSW, const Handle(StepVisual_TessellatedEdge)& theEnt) const { // Own fields of RepresentationItem theSW.Send(theEnt->Name()); // Own fields of TessellatedEdge theSW.Send(theEnt->Coordinates()); if (theEnt->HasGeometricLink()) { theSW.Send(theEnt->GeometricLink().Value()); } else { theSW.SendUndef(); } theSW.OpenSub(); for (Standard_Integer i3 = 1; i3 <= theEnt->LineStrip()->Length(); i3++) { Standard_Integer Var0 = theEnt->LineStrip()->Value(i3); theSW.Send(Var0); } theSW.CloseSub(); } //======================================================================= //function : Share //purpose : //======================================================================= void RWStepVisual_RWTessellatedEdge::Share (const Handle(StepVisual_TessellatedEdge)&theEnt, Interface_EntityIterator& theIter) const { // Inherited fields of RepresentationItem // Own fields of TessellatedEdge theIter.AddItem(theEnt->Coordinates()); if (theEnt->HasGeometricLink()) { theIter.AddItem(theEnt->GeometricLink().Value()); } }