mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-30 13:05:50 +03:00
76 lines
1.7 KiB
C++
Executable File
76 lines
1.7 KiB
C++
Executable File
|
|
#include <RWStepGeom_RWCylindricalSurface.ixx>
|
|
#include <StepGeom_Axis2Placement3d.hxx>
|
|
|
|
|
|
#include <Interface_EntityIterator.hxx>
|
|
|
|
|
|
#include <StepGeom_CylindricalSurface.hxx>
|
|
|
|
|
|
RWStepGeom_RWCylindricalSurface::RWStepGeom_RWCylindricalSurface () {}
|
|
|
|
void RWStepGeom_RWCylindricalSurface::ReadStep
|
|
(const Handle(StepData_StepReaderData)& data,
|
|
const Standard_Integer num,
|
|
Handle(Interface_Check)& ach,
|
|
const Handle(StepGeom_CylindricalSurface)& ent) const
|
|
{
|
|
|
|
|
|
// --- Number of Parameter Control ---
|
|
|
|
if (!data->CheckNbParams(num,3,ach,"cylindrical_surface")) return;
|
|
|
|
// --- inherited field : name ---
|
|
|
|
Handle(TCollection_HAsciiString) aName;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
|
|
data->ReadString (num,1,"name",ach,aName);
|
|
|
|
// --- inherited field : position ---
|
|
|
|
Handle(StepGeom_Axis2Placement3d) aPosition;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
|
|
data->ReadEntity(num, 2,"position", ach, STANDARD_TYPE(StepGeom_Axis2Placement3d), aPosition);
|
|
|
|
// --- own field : radius ---
|
|
|
|
Standard_Real aRadius;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
|
|
data->ReadReal (num,3,"radius",ach,aRadius);
|
|
|
|
//--- Initialisation of the read entity ---
|
|
|
|
|
|
ent->Init(aName, aPosition, aRadius);
|
|
}
|
|
|
|
|
|
void RWStepGeom_RWCylindricalSurface::WriteStep
|
|
(StepData_StepWriter& SW,
|
|
const Handle(StepGeom_CylindricalSurface)& ent) const
|
|
{
|
|
|
|
// --- inherited field name ---
|
|
|
|
SW.Send(ent->Name());
|
|
|
|
// --- inherited field position ---
|
|
|
|
SW.Send(ent->Position());
|
|
|
|
// --- own field : radius ---
|
|
|
|
SW.Send(ent->Radius());
|
|
}
|
|
|
|
|
|
void RWStepGeom_RWCylindricalSurface::Share(const Handle(StepGeom_CylindricalSurface)& ent, Interface_EntityIterator& iter) const
|
|
{
|
|
|
|
iter.GetOneItem(ent->Position());
|
|
}
|
|
|