0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / RWStepFEA / RWStepFEA_RWFeaParametricPoint.cxx
CommitLineData
b311480e 1// Created on: 2002-12-12
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2002-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
7fd59977 17
42cf5bc1 18#include <Interface_Check.hxx>
19#include <Interface_EntityIterator.hxx>
20#include <RWStepFEA_RWFeaParametricPoint.hxx>
7fd59977 21#include <Standard_Real.hxx>
42cf5bc1 22#include <StepData_StepReaderData.hxx>
23#include <StepData_StepWriter.hxx>
24#include <StepFEA_FeaParametricPoint.hxx>
25#include <TColStd_HArray1OfReal.hxx>
7fd59977 26
27//=======================================================================
28//function : RWStepFEA_RWFeaParametricPoint
29//purpose :
30//=======================================================================
7fd59977 31RWStepFEA_RWFeaParametricPoint::RWStepFEA_RWFeaParametricPoint ()
32{
33}
34
35//=======================================================================
36//function : ReadStep
37//purpose :
38//=======================================================================
39
40void RWStepFEA_RWFeaParametricPoint::ReadStep (const Handle(StepData_StepReaderData)& data,
41 const Standard_Integer num,
42 Handle(Interface_Check)& ach,
43 const Handle(StepFEA_FeaParametricPoint) &ent) const
44{
45 // Check number of parameters
46 if ( ! data->CheckNbParams(num,2,ach,"fea_parametric_point") ) return;
47
48 // Inherited fields of RepresentationItem
49
50 Handle(TCollection_HAsciiString) aRepresentationItem_Name;
51 data->ReadString (num, 1, "representation_item.name", ach, aRepresentationItem_Name);
52
53 // Own fields of FeaParametricPoint
54
55 Handle(TColStd_HArray1OfReal) aCoordinates;
56 Standard_Integer sub2 = 0;
57 if ( data->ReadSubList (num, 2, "coordinates", ach, sub2) ) {
58 Standard_Integer nb0 = data->NbParams(sub2);
59 aCoordinates = new TColStd_HArray1OfReal (1, nb0);
60 Standard_Integer num2 = sub2;
61 for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
62 Standard_Real anIt0;
63 data->ReadReal (num2, i0, "real", ach, anIt0);
64 aCoordinates->SetValue(i0, anIt0);
65 }
66 }
67
68 // Initialize entity
69 ent->Init(aRepresentationItem_Name,
70 aCoordinates);
71}
72
73//=======================================================================
74//function : WriteStep
75//purpose :
76//=======================================================================
77
78void RWStepFEA_RWFeaParametricPoint::WriteStep (StepData_StepWriter& SW,
79 const Handle(StepFEA_FeaParametricPoint) &ent) const
80{
81
82 // Inherited fields of RepresentationItem
83
84 SW.Send (ent->StepRepr_RepresentationItem::Name());
85
86 // Own fields of FeaParametricPoint
87
88 SW.OpenSub();
89 for (Standard_Integer i1=1; i1 <= ent->Coordinates()->Length(); i1++ ) {
90 Standard_Real Var0 = ent->Coordinates()->Value(i1);
91 SW.Send (Var0);
92 }
93 SW.CloseSub();
94}
95
96//=======================================================================
97//function : Share
98//purpose :
99//=======================================================================
100
35e08fe8 101void RWStepFEA_RWFeaParametricPoint::Share (const Handle(StepFEA_FeaParametricPoint) &,
102 Interface_EntityIterator&) const
7fd59977 103{
7fd59977 104 // Inherited fields of RepresentationItem
7fd59977 105 // Own fields of FeaParametricPoint
106}