1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-16 10:08:36 +03:00
occt/src/RWStepShape/RWStepShape_RWSeamEdge.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

138 lines
4.4 KiB
C++

// Created on: 2002-01-04
// Created by: data exchange team
// Copyright (c) 2002-2014 OPEN CASCADE SAS
//
// 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.
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
#include <Interface_Check.hxx>
#include <Interface_EntityIterator.hxx>
#include <RWStepShape_RWSeamEdge.hxx>
#include <StepData_StepReaderData.hxx>
#include <StepData_StepWriter.hxx>
#include <StepGeom_Pcurve.hxx>
#include <StepShape_Edge.hxx>
#include <StepShape_SeamEdge.hxx>
#include <StepShape_Vertex.hxx>
//=======================================================================
//function : RWStepShape_RWSeamEdge
//purpose :
//=======================================================================
RWStepShape_RWSeamEdge::RWStepShape_RWSeamEdge ()
{
}
//=======================================================================
//function : ReadStep
//purpose :
//=======================================================================
void RWStepShape_RWSeamEdge::ReadStep (const Handle(StepData_StepReaderData)& data,
const Standard_Integer num,
Handle(Interface_Check)& ach,
const Handle(StepShape_SeamEdge) &ent) const
{
// Check number of parameters
if ( ! data->CheckNbParams(num,6,ach,"seam_edge") ) return;
// Inherited fields of RepresentationItem
Handle(TCollection_HAsciiString) aRepresentationItem_Name;
data->ReadString (num, 1, "representation_item.name", ach, aRepresentationItem_Name);
// Inherited fields of Edge
Handle(StepShape_Vertex) aEdge_EdgeStart;
data->CheckDerived(num, 2, "edge.edge_start", ach,Standard_False);
Handle(StepShape_Vertex) aEdge_EdgeEnd;
data->CheckDerived (num, 3, "edge.edge_end", ach, Standard_False);
// Inherited fields of OrientedEdge
Handle(StepShape_Edge) aOrientedEdge_EdgeElement;
data->ReadEntity (num, 4, "oriented_edge.edge_element", ach, STANDARD_TYPE(StepShape_Edge), aOrientedEdge_EdgeElement);
Standard_Boolean aOrientedEdge_Orientation;
data->ReadBoolean (num, 5, "oriented_edge.orientation", ach, aOrientedEdge_Orientation);
// Own fields of SeamEdge
Handle(StepGeom_Pcurve) aPcurveReference;
data->ReadEntity (num, 6, "pcurve_reference", ach, STANDARD_TYPE(StepGeom_Pcurve), aPcurveReference);
// Initialize entity
ent->Init(aRepresentationItem_Name,
aOrientedEdge_EdgeElement,
aOrientedEdge_Orientation,
aPcurveReference);
}
//=======================================================================
//function : WriteStep
//purpose :
//=======================================================================
void RWStepShape_RWSeamEdge::WriteStep (StepData_StepWriter& SW,
const Handle(StepShape_SeamEdge) &ent) const
{
// Inherited fields of RepresentationItem
SW.Send (ent->StepRepr_RepresentationItem::Name());
// Inherited fields of Edge
SW.Send (ent->StepShape_Edge::EdgeStart());
SW.Send (ent->StepShape_Edge::EdgeEnd());
// Inherited fields of OrientedEdge
SW.Send (ent->StepShape_OrientedEdge::EdgeElement());
SW.SendBoolean (ent->StepShape_OrientedEdge::Orientation());
// Own fields of SeamEdge
SW.Send (ent->PcurveReference());
}
//=======================================================================
//function : Share
//purpose :
//=======================================================================
void RWStepShape_RWSeamEdge::Share (const Handle(StepShape_SeamEdge) &ent,
Interface_EntityIterator& iter) const
{
// Inherited fields of RepresentationItem
// Inherited fields of Edge
iter.AddItem (ent->StepShape_Edge::EdgeStart());
iter.AddItem (ent->StepShape_Edge::EdgeEnd());
// Inherited fields of OrientedEdge
iter.AddItem (ent->StepShape_OrientedEdge::EdgeElement());
// Own fields of SeamEdge
iter.AddItem (ent->PcurveReference());
}