mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
55
src/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.cxx
Executable file
55
src/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.cxx
Executable file
@@ -0,0 +1,55 @@
|
||||
|
||||
#include <RWStepVisual_RWSurfaceStyleBoundary.ixx>
|
||||
#include <StepVisual_CurveStyle.hxx>
|
||||
|
||||
|
||||
#include <Interface_EntityIterator.hxx>
|
||||
|
||||
|
||||
#include <StepVisual_SurfaceStyleBoundary.hxx>
|
||||
|
||||
|
||||
RWStepVisual_RWSurfaceStyleBoundary::RWStepVisual_RWSurfaceStyleBoundary () {}
|
||||
|
||||
void RWStepVisual_RWSurfaceStyleBoundary::ReadStep
|
||||
(const Handle(StepData_StepReaderData)& data,
|
||||
const Standard_Integer num,
|
||||
Handle(Interface_Check)& ach,
|
||||
const Handle(StepVisual_SurfaceStyleBoundary)& ent) const
|
||||
{
|
||||
|
||||
|
||||
// --- Number of Parameter Control ---
|
||||
|
||||
if (!data->CheckNbParams(num,1,ach,"surface_style_boundary")) return;
|
||||
|
||||
// --- own field : styleOfBoundary ---
|
||||
|
||||
Handle(StepVisual_CurveStyle) aStyleOfBoundary;
|
||||
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
|
||||
data->ReadEntity(num, 1,"style_of_boundary", ach, STANDARD_TYPE(StepVisual_CurveStyle), aStyleOfBoundary);
|
||||
|
||||
//--- Initialisation of the read entity ---
|
||||
|
||||
|
||||
ent->Init(aStyleOfBoundary);
|
||||
}
|
||||
|
||||
|
||||
void RWStepVisual_RWSurfaceStyleBoundary::WriteStep
|
||||
(StepData_StepWriter& SW,
|
||||
const Handle(StepVisual_SurfaceStyleBoundary)& ent) const
|
||||
{
|
||||
|
||||
// --- own field : styleOfBoundary ---
|
||||
|
||||
SW.Send(ent->StyleOfBoundary());
|
||||
}
|
||||
|
||||
|
||||
void RWStepVisual_RWSurfaceStyleBoundary::Share(const Handle(StepVisual_SurfaceStyleBoundary)& ent, Interface_EntityIterator& iter) const
|
||||
{
|
||||
|
||||
iter.GetOneItem(ent->StyleOfBoundary());
|
||||
}
|
||||
|
Reference in New Issue
Block a user