summaryrefslogtreecommitdiff
path: root/drv/XCAFSchema/XCAFSchema_gp_Mat2d.cxx
blob: bab40235496c1141daf886dceed5525ec914ed07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef _XCAFSchema_gp_Mat2d_HeaderFile
#include <XCAFSchema_gp_Mat2d.hxx>
#endif
#ifndef _gp_Mat2d_HeaderFile
#include <gp_Mat2d.hxx>
#endif
#include <XCAFSchema_gp_Mat2d.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif

void XCAFSchema_gp_Mat2d::SWrite(const gp_Mat2d& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
  f.BeginWriteObjectData();
  Standard_Integer gp_Mat2dmatrix1 = 0,gp_Mat2dmatrix2 = 0;

    for (gp_Mat2dmatrix1 = 0; gp_Mat2dmatrix1 < 2; gp_Mat2dmatrix1++)
    for (gp_Mat2dmatrix2 = 0; gp_Mat2dmatrix2 < 2; gp_Mat2dmatrix2++)
 {
    f.PutReal(((gp_Mat2d&)pp)._CSFDB_Getgp_Mat2dmatrix(gp_Mat2dmatrix1,gp_Mat2dmatrix2));

  }

  f.EndWriteObjectData();
}

void XCAFSchema_gp_Mat2d::SRead(gp_Mat2d& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
  f.BeginReadObjectData();
  Standard_Integer gp_Mat2dmatrix1 = 0,gp_Mat2dmatrix2 = 0;
   
    for (gp_Mat2dmatrix1 = 0; gp_Mat2dmatrix1 < 2; gp_Mat2dmatrix1++)
    for (gp_Mat2dmatrix2 = 0; gp_Mat2dmatrix2 < 2; gp_Mat2dmatrix2++)
 {
  Standard_Real gp_Mat2dmatrix;

  f.GetReal(gp_Mat2dmatrix);
  pp._CSFDB_Getgp_Mat2dmatrix(gp_Mat2dmatrix1,gp_Mat2dmatrix2) = gp_Mat2dmatrix;

}

  f.EndReadObjectData();
}