mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-30 13:05:50 +03:00
80 lines
1.9 KiB
C++
Executable File
80 lines
1.9 KiB
C++
Executable File
|
|
#include <RWStepGeom_RWSurfaceReplica.ixx>
|
|
#include <StepGeom_Surface.hxx>
|
|
#include <StepGeom_CartesianTransformationOperator3d.hxx>
|
|
|
|
|
|
#include <Interface_EntityIterator.hxx>
|
|
|
|
|
|
#include <StepGeom_SurfaceReplica.hxx>
|
|
|
|
|
|
RWStepGeom_RWSurfaceReplica::RWStepGeom_RWSurfaceReplica () {}
|
|
|
|
void RWStepGeom_RWSurfaceReplica::ReadStep
|
|
(const Handle(StepData_StepReaderData)& data,
|
|
const Standard_Integer num,
|
|
Handle(Interface_Check)& ach,
|
|
const Handle(StepGeom_SurfaceReplica)& ent) const
|
|
{
|
|
|
|
|
|
// --- Number of Parameter Control ---
|
|
|
|
if (!data->CheckNbParams(num,3,ach,"surface_replica")) return;
|
|
|
|
// --- inherited field : name ---
|
|
|
|
Handle(TCollection_HAsciiString) aName;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
|
|
data->ReadString (num,1,"name",ach,aName);
|
|
|
|
// --- own field : parentSurface ---
|
|
|
|
Handle(StepGeom_Surface) aParentSurface;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
|
|
data->ReadEntity(num, 2,"parent_surface", ach, STANDARD_TYPE(StepGeom_Surface), aParentSurface);
|
|
|
|
// --- own field : transformation ---
|
|
|
|
Handle(StepGeom_CartesianTransformationOperator3d) aTransformation;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
|
|
data->ReadEntity(num, 3,"transformation", ach, STANDARD_TYPE(StepGeom_CartesianTransformationOperator3d), aTransformation);
|
|
|
|
//--- Initialisation of the read entity ---
|
|
|
|
|
|
ent->Init(aName, aParentSurface, aTransformation);
|
|
}
|
|
|
|
|
|
void RWStepGeom_RWSurfaceReplica::WriteStep
|
|
(StepData_StepWriter& SW,
|
|
const Handle(StepGeom_SurfaceReplica)& ent) const
|
|
{
|
|
|
|
// --- inherited field name ---
|
|
|
|
SW.Send(ent->Name());
|
|
|
|
// --- own field : parentSurface ---
|
|
|
|
SW.Send(ent->ParentSurface());
|
|
|
|
// --- own field : transformation ---
|
|
|
|
SW.Send(ent->Transformation());
|
|
}
|
|
|
|
|
|
void RWStepGeom_RWSurfaceReplica::Share(const Handle(StepGeom_SurfaceReplica)& ent, Interface_EntityIterator& iter) const
|
|
{
|
|
|
|
iter.GetOneItem(ent->ParentSurface());
|
|
|
|
|
|
iter.GetOneItem(ent->Transformation());
|
|
}
|
|
|