blob: d40f71aca4dc444164f547a77c5410dcdab54abc (
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
|
#ifndef _ShapeSchema_gp_Trsf2d_HeaderFile
#include <ShapeSchema_gp_Trsf2d.hxx>
#endif
#ifndef _gp_Trsf2d_HeaderFile
#include <gp_Trsf2d.hxx>
#endif
#include <ShapeSchema_gp_Trsf2d.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif
void ShapeSchema_gp_Trsf2d::SWrite(const gp_Trsf2d& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
f.BeginWriteObjectData();
f.PutReal(pp._CSFDB_Getgp_Trsf2dscale());
f.PutInteger(pp._CSFDB_Getgp_Trsf2dshape());
ShapeSchema_gp_Mat2d::SWrite(pp._CSFDB_Getgp_Trsf2dmatrix(),f,theSchema);
ShapeSchema_gp_XY::SWrite(pp._CSFDB_Getgp_Trsf2dloc(),f,theSchema);
f.EndWriteObjectData();
}
void ShapeSchema_gp_Trsf2d::SRead(gp_Trsf2d& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
f.BeginReadObjectData();
Standard_Real gp_Trsf2dscale;
f.GetReal(gp_Trsf2dscale);
pp._CSFDB_Setgp_Trsf2dscale(gp_Trsf2dscale);
gp_TrsfForm gp_Trsf2dshape;
Standard_Integer i_CSFDB_gp_Trsf2dshape;
f.GetInteger(i_CSFDB_gp_Trsf2dshape);
gp_Trsf2dshape = (gp_TrsfForm)i_CSFDB_gp_Trsf2dshape;
pp._CSFDB_Setgp_Trsf2dshape(gp_Trsf2dshape);
ShapeSchema_gp_Mat2d::SRead((gp_Mat2d&)pp._CSFDB_Getgp_Trsf2dmatrix(),f,theSchema);
ShapeSchema_gp_XY::SRead((gp_XY&)pp._CSFDB_Getgp_Trsf2dloc(),f,theSchema);
f.EndReadObjectData();
}
|