0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / RWStepGeom / RWStepGeom_RWEvaluatedDegeneratePcurve.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
7fd59977 13
7fd59977 14
42cf5bc1 15#include <Interface_Check.hxx>
7fd59977 16#include <Interface_EntityIterator.hxx>
42cf5bc1 17#include <RWStepGeom_RWEvaluatedDegeneratePcurve.hxx>
18#include <StepData_StepReaderData.hxx>
19#include <StepData_StepWriter.hxx>
20#include <StepGeom_CartesianPoint.hxx>
7fd59977 21#include <StepGeom_EvaluatedDegeneratePcurve.hxx>
42cf5bc1 22#include <StepGeom_Surface.hxx>
23#include <StepRepr_DefinitionalRepresentation.hxx>
7fd59977 24
25RWStepGeom_RWEvaluatedDegeneratePcurve::RWStepGeom_RWEvaluatedDegeneratePcurve () {}
26
27void RWStepGeom_RWEvaluatedDegeneratePcurve::ReadStep
28 (const Handle(StepData_StepReaderData)& data,
29 const Standard_Integer num,
30 Handle(Interface_Check)& ach,
31 const Handle(StepGeom_EvaluatedDegeneratePcurve)& ent) const
32{
33
34
35 // --- Number of Parameter Control ---
36
37 if (!data->CheckNbParams(num,4,ach,"evaluated_degenerate_pcurve")) return;
38
39 // --- inherited field : name ---
40
41 Handle(TCollection_HAsciiString) aName;
42 //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
43 data->ReadString (num,1,"name",ach,aName);
44
45 // --- inherited field : basisSurface ---
46
47 Handle(StepGeom_Surface) aBasisSurface;
48 //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
49 data->ReadEntity(num, 2,"basis_surface", ach, STANDARD_TYPE(StepGeom_Surface), aBasisSurface);
50
51 // --- inherited field : referenceToCurve ---
52
53 Handle(StepRepr_DefinitionalRepresentation) aReferenceToCurve;
54 //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
55 data->ReadEntity(num, 3,"reference_to_curve", ach, STANDARD_TYPE(StepRepr_DefinitionalRepresentation), aReferenceToCurve);
56
57 // --- own field : equivalentPoint ---
58
59 Handle(StepGeom_CartesianPoint) aEquivalentPoint;
60 //szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
61 data->ReadEntity(num, 4,"equivalent_point", ach, STANDARD_TYPE(StepGeom_CartesianPoint), aEquivalentPoint);
62
63 //--- Initialisation of the read entity ---
64
65
66 ent->Init(aName, aBasisSurface, aReferenceToCurve, aEquivalentPoint);
67}
68
69
70void RWStepGeom_RWEvaluatedDegeneratePcurve::WriteStep
71 (StepData_StepWriter& SW,
72 const Handle(StepGeom_EvaluatedDegeneratePcurve)& ent) const
73{
74
75 // --- inherited field name ---
76
77 SW.Send(ent->Name());
78
79 // --- inherited field basisSurface ---
80
81 SW.Send(ent->BasisSurface());
82
83 // --- inherited field referenceToCurve ---
84
85 SW.Send(ent->ReferenceToCurve());
86
87 // --- own field : equivalentPoint ---
88
89 SW.Send(ent->EquivalentPoint());
90}
91
92
93void RWStepGeom_RWEvaluatedDegeneratePcurve::Share(const Handle(StepGeom_EvaluatedDegeneratePcurve)& ent, Interface_EntityIterator& iter) const
94{
95
96 iter.GetOneItem(ent->BasisSurface());
97
98
99 iter.GetOneItem(ent->ReferenceToCurve());
100
101
102 iter.GetOneItem(ent->EquivalentPoint());
103}
104