1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/StdObject/StdObject_gp_Surfaces.hxx
snn ec96437207 0028564: Support of applications using old persistence (ShapeSchema)
1. Bug fix in reading old persistent data using FSD_File storage driver
2. Persistence compatible with legacy format was restored for shapes
   a. Implemented a storage read / write wrapper for legacy persistence
   b. Added DRAW commands to read / write files in legacy format
   c. Added test cases for reading / writing operations with checking number of sub-shapes and physical properties
   d. Updated related sections of the development guide
2017-04-28 12:44:50 +03:00

125 lines
3.2 KiB
C++

// Copyright (c) 2015 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef _StdObject_gp_Surfaces_HeaderFile
#define _StdObject_gp_Surfaces_HeaderFile
#include <StdObject_gp_Axes.hxx>
#include <gp_Cone.hxx>
#include <gp_Cylinder.hxx>
#include <gp_Sphere.hxx>
#include <gp_Torus.hxx>
inline StdObjMgt_ReadData& operator >>
(StdObjMgt_ReadData& theReadData, gp_Cone& theCone)
{
gp_Ax3 anAx;
Standard_Real aRadius, aSemiAngle;
theReadData >> anAx >> aRadius >> aSemiAngle;
theCone.SetPosition (anAx);
theCone.SetRadius (aRadius);
theCone.SetSemiAngle (aSemiAngle);
return theReadData;
}
inline StdObjMgt_WriteData& operator <<
(StdObjMgt_WriteData& theWriteData, const gp_Cone& theCone)
{
const gp_Ax3& anAx = theCone.Position();
Standard_Real aRadius = theCone.RefRadius();
Standard_Real aSemiAngle = theCone.SemiAngle();
theWriteData << anAx << aRadius << aSemiAngle;
return theWriteData;
}
inline StdObjMgt_ReadData& operator >>
(StdObjMgt_ReadData& theReadData, gp_Cylinder& theCyl)
{
gp_Ax3 anAx;
Standard_Real aRadius;
theReadData >> anAx >> aRadius;
theCyl.SetPosition (anAx);
theCyl.SetRadius (aRadius);
return theReadData;
}
inline StdObjMgt_WriteData& operator <<
(StdObjMgt_WriteData& theWriteData, const gp_Cylinder& theCyl)
{
const gp_Ax3& anAx = theCyl.Position();
Standard_Real aRadius = theCyl.Radius();
theWriteData << anAx << aRadius;
return theWriteData;
}
inline StdObjMgt_ReadData& operator >>
(StdObjMgt_ReadData& theReadData, gp_Sphere& theSph)
{
gp_Ax3 anAx;
Standard_Real aRadius;
theReadData >> anAx >> aRadius;
theSph.SetPosition (anAx);
theSph.SetRadius (aRadius);
return theReadData;
}
inline StdObjMgt_WriteData& operator <<
(StdObjMgt_WriteData& theWriteData, const gp_Sphere& theSph)
{
const gp_Ax3& anAx = theSph.Position();
Standard_Real aRadius = theSph.Radius();
theWriteData << anAx << aRadius;
return theWriteData;
}
inline StdObjMgt_ReadData& operator >>
(StdObjMgt_ReadData& theReadData, gp_Torus& theTorus)
{
gp_Ax3 anAx;
Standard_Real aMajorRadius, aMinorRadius;
theReadData >> anAx >> aMajorRadius >> aMinorRadius;
theTorus.SetPosition (anAx);
theTorus.SetMajorRadius (aMajorRadius);
theTorus.SetMinorRadius (aMinorRadius);
return theReadData;
}
inline StdObjMgt_WriteData& operator <<
(StdObjMgt_WriteData& theWriteData, const gp_Torus& theTorus)
{
const gp_Ax3& anAx = theTorus.Position();
Standard_Real aMajorRadius = theTorus.MajorRadius();
Standard_Real aMinorRadius = theTorus.MinorRadius();
theWriteData << anAx << aMajorRadius << aMinorRadius;
return theWriteData;
}
#endif