1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
// File: RWStepShape_RWDimensionalCharacteristicRepresentation.cxx
// Created: Tue Apr 18 16:42:58 2000
// Author: Andrey BETENEV
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
// Copyright: Matra Datavision 1999
#include <RWStepShape_RWDimensionalCharacteristicRepresentation.ixx>
//=======================================================================
//function : RWStepShape_RWDimensionalCharacteristicRepresentation
//purpose :
//=======================================================================
RWStepShape_RWDimensionalCharacteristicRepresentation::RWStepShape_RWDimensionalCharacteristicRepresentation ()
{
}
//=======================================================================
//function : ReadStep
//purpose :
//=======================================================================
void RWStepShape_RWDimensionalCharacteristicRepresentation::ReadStep (const Handle(StepData_StepReaderData)& data,
const Standard_Integer num,
Handle(Interface_Check)& ach,
const Handle(StepShape_DimensionalCharacteristicRepresentation) &ent) const
{
// Check number of parameters
if ( ! data->CheckNbParams(num,2,ach,"dimensional_characteristic_representation") ) return;
// Own fields of DimensionalCharacteristicRepresentation
StepShape_DimensionalCharacteristic aDimension;
data->ReadEntity (num, 1, "dimension", ach, aDimension);
Handle(StepShape_ShapeDimensionRepresentation) aRepresentation;
data->ReadEntity (num, 2, "representation", ach, STANDARD_TYPE(StepShape_ShapeDimensionRepresentation), aRepresentation);
// Initialize entity
ent->Init(aDimension,
aRepresentation);
}
//=======================================================================
//function : WriteStep
//purpose :
//=======================================================================
void RWStepShape_RWDimensionalCharacteristicRepresentation::WriteStep (StepData_StepWriter& SW,
const Handle(StepShape_DimensionalCharacteristicRepresentation) &ent) const
{
// Own fields of DimensionalCharacteristicRepresentation
SW.Send (ent->Dimension().Value());
SW.Send (ent->Representation());
}
//=======================================================================
//function : Share
//purpose :
//=======================================================================
void RWStepShape_RWDimensionalCharacteristicRepresentation::Share (const Handle(StepShape_DimensionalCharacteristicRepresentation) &ent,
Interface_EntityIterator& iter) const
{
// Own fields of DimensionalCharacteristicRepresentation
iter.AddItem (ent->Dimension().Value());
iter.AddItem (ent->Representation());
}