mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
79
src/RWStepGeom/RWStepGeom_RWCurveReplica.cxx
Executable file
79
src/RWStepGeom/RWStepGeom_RWCurveReplica.cxx
Executable file
@@ -0,0 +1,79 @@
|
||||
|
||||
#include <RWStepGeom_RWCurveReplica.ixx>
|
||||
#include <StepGeom_Curve.hxx>
|
||||
#include <StepGeom_CartesianTransformationOperator.hxx>
|
||||
|
||||
|
||||
#include <Interface_EntityIterator.hxx>
|
||||
|
||||
|
||||
#include <StepGeom_CurveReplica.hxx>
|
||||
|
||||
|
||||
RWStepGeom_RWCurveReplica::RWStepGeom_RWCurveReplica () {}
|
||||
|
||||
void RWStepGeom_RWCurveReplica::ReadStep
|
||||
(const Handle(StepData_StepReaderData)& data,
|
||||
const Standard_Integer num,
|
||||
Handle(Interface_Check)& ach,
|
||||
const Handle(StepGeom_CurveReplica)& ent) const
|
||||
{
|
||||
|
||||
|
||||
// --- Number of Parameter Control ---
|
||||
|
||||
if (!data->CheckNbParams(num,3,ach,"curve_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 : parentCurve ---
|
||||
|
||||
Handle(StepGeom_Curve) aParentCurve;
|
||||
//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
|
||||
data->ReadEntity(num, 2,"parent_curve", ach, STANDARD_TYPE(StepGeom_Curve), aParentCurve);
|
||||
|
||||
// --- own field : transformation ---
|
||||
|
||||
Handle(StepGeom_CartesianTransformationOperator) aTransformation;
|
||||
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
|
||||
data->ReadEntity(num, 3,"transformation", ach, STANDARD_TYPE(StepGeom_CartesianTransformationOperator), aTransformation);
|
||||
|
||||
//--- Initialisation of the read entity ---
|
||||
|
||||
|
||||
ent->Init(aName, aParentCurve, aTransformation);
|
||||
}
|
||||
|
||||
|
||||
void RWStepGeom_RWCurveReplica::WriteStep
|
||||
(StepData_StepWriter& SW,
|
||||
const Handle(StepGeom_CurveReplica)& ent) const
|
||||
{
|
||||
|
||||
// --- inherited field name ---
|
||||
|
||||
SW.Send(ent->Name());
|
||||
|
||||
// --- own field : parentCurve ---
|
||||
|
||||
SW.Send(ent->ParentCurve());
|
||||
|
||||
// --- own field : transformation ---
|
||||
|
||||
SW.Send(ent->Transformation());
|
||||
}
|
||||
|
||||
|
||||
void RWStepGeom_RWCurveReplica::Share(const Handle(StepGeom_CurveReplica)& ent, Interface_EntityIterator& iter) const
|
||||
{
|
||||
|
||||
iter.GetOneItem(ent->ParentCurve());
|
||||
|
||||
|
||||
iter.GetOneItem(ent->Transformation());
|
||||
}
|
||||
|
Reference in New Issue
Block a user