mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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
261 lines
6.5 KiB
C++
261 lines
6.5 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_Curves_HeaderFile
|
|
#define _StdObject_gp_Curves_HeaderFile
|
|
|
|
|
|
#include <StdObject_gp_Axes.hxx>
|
|
|
|
#include <gp_Lin2d.hxx>
|
|
#include <gp_Circ2d.hxx>
|
|
#include <gp_Elips2d.hxx>
|
|
#include <gp_Hypr2d.hxx>
|
|
#include <gp_Parab2d.hxx>
|
|
#include <gp_Lin.hxx>
|
|
#include <gp_Circ.hxx>
|
|
#include <gp_Elips.hxx>
|
|
#include <gp_Hypr.hxx>
|
|
#include <gp_Parab.hxx>
|
|
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Lin2d& theLin)
|
|
{
|
|
gp_Ax2d anAx;
|
|
theReadData >> anAx;
|
|
theLin.SetPosition (anAx);
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Lin2d& theLin)
|
|
{
|
|
const gp_Ax2d& anAx = theLin.Position();
|
|
write (theWriteData, anAx);
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Circ2d& theCirc)
|
|
{
|
|
gp_Ax22d anAx;
|
|
Standard_Real aRadius;
|
|
|
|
theReadData >> anAx >> aRadius;
|
|
|
|
theCirc.SetAxis (anAx);
|
|
theCirc.SetRadius (aRadius);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Circ2d& theCirc)
|
|
{
|
|
const gp_Ax22d& anAx = theCirc.Position();
|
|
Standard_Real aRadius = theCirc.Radius();
|
|
theWriteData << anAx << aRadius;
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Elips2d& theElips)
|
|
{
|
|
gp_Ax22d anAx;
|
|
Standard_Real aMajorRadius, aMinorRadius;
|
|
|
|
theReadData >> anAx >> aMajorRadius >> aMinorRadius;
|
|
|
|
theElips.SetAxis (anAx);
|
|
theElips.SetMajorRadius (aMajorRadius);
|
|
theElips.SetMinorRadius (aMinorRadius);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Elips2d& theElips)
|
|
{
|
|
const gp_Ax22d& anAx = theElips.Axis();
|
|
Standard_Real aMajorRadius = theElips.MajorRadius();
|
|
Standard_Real aMinorRadius = theElips.MinorRadius();
|
|
theWriteData << anAx << aMajorRadius << aMinorRadius;
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Hypr2d& theHypr)
|
|
{
|
|
gp_Ax22d anAx;
|
|
Standard_Real aMajorRadius, aMinorRadius;
|
|
|
|
theReadData >> anAx >> aMajorRadius >> aMinorRadius;
|
|
|
|
theHypr.SetAxis (anAx);
|
|
theHypr.SetMajorRadius (aMajorRadius);
|
|
theHypr.SetMinorRadius (aMinorRadius);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Hypr2d& theHypr)
|
|
{
|
|
const gp_Ax22d& anAx = theHypr.Axis();
|
|
Standard_Real aMajorRadius = theHypr.MajorRadius();
|
|
Standard_Real aMinorRadius = theHypr.MinorRadius();
|
|
theWriteData << anAx << aMajorRadius << aMinorRadius;
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Parab2d& theParab)
|
|
{
|
|
gp_Ax22d anAx;
|
|
Standard_Real aFocalLength;
|
|
|
|
theReadData >> anAx >> aFocalLength;
|
|
|
|
theParab.SetAxis (anAx);
|
|
theParab.SetFocal (aFocalLength);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Parab2d& theParab)
|
|
{
|
|
const gp_Ax22d& anAx = theParab.Axis();
|
|
Standard_Real aFocalLength = theParab.Focal();
|
|
theWriteData << anAx << aFocalLength;
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Lin& theLin)
|
|
{
|
|
gp_Ax1 anAx;
|
|
theReadData >> anAx;
|
|
theLin.SetPosition (anAx);
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Lin& theLin)
|
|
{
|
|
const gp_Ax1& anAx = theLin.Position();
|
|
write (theWriteData, anAx);
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Circ& theCirc)
|
|
{
|
|
gp_Ax2 anAx;
|
|
Standard_Real aRadius;
|
|
|
|
theReadData >> anAx >> aRadius;
|
|
|
|
theCirc.SetPosition (anAx);
|
|
theCirc.SetRadius (aRadius);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Circ& theCirc)
|
|
{
|
|
const gp_Ax2& anAx = theCirc.Position();
|
|
Standard_Real aRadius = theCirc.Radius();
|
|
theWriteData << anAx << aRadius;
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Elips& theElips)
|
|
{
|
|
gp_Ax2 anAx;
|
|
Standard_Real aMajorRadius, aMinorRadius;
|
|
|
|
theReadData >> anAx >> aMajorRadius >> aMinorRadius;
|
|
|
|
theElips.SetPosition (anAx);
|
|
theElips.SetMajorRadius (aMajorRadius);
|
|
theElips.SetMinorRadius (aMinorRadius);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Elips& theElips)
|
|
{
|
|
const gp_Ax2& anAx = theElips.Position();
|
|
Standard_Real aMajorRadius = theElips.MajorRadius();
|
|
Standard_Real aMinorRadius = theElips.MinorRadius();
|
|
theWriteData << anAx << aMajorRadius << aMinorRadius;
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Hypr& theHypr)
|
|
{
|
|
gp_Ax2 anAx;
|
|
Standard_Real aMajorRadius, aMinorRadius;
|
|
|
|
theReadData >> anAx >> aMajorRadius >> aMinorRadius;
|
|
|
|
theHypr.SetPosition (anAx);
|
|
theHypr.SetMajorRadius (aMajorRadius);
|
|
theHypr.SetMinorRadius (aMinorRadius);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Hypr& theHypr)
|
|
{
|
|
const gp_Ax2& anAx = theHypr.Position();
|
|
Standard_Real aMajorRadius = theHypr.MajorRadius();
|
|
Standard_Real aMinorRadius = theHypr.MinorRadius();
|
|
theWriteData << anAx << aMajorRadius << aMinorRadius;
|
|
return theWriteData;
|
|
}
|
|
|
|
inline StdObjMgt_ReadData& operator >>
|
|
(StdObjMgt_ReadData& theReadData, gp_Parab& theParab)
|
|
{
|
|
gp_Ax2 anAx;
|
|
Standard_Real aFocalLength;
|
|
|
|
theReadData >> anAx >> aFocalLength;
|
|
|
|
theParab.SetPosition (anAx);
|
|
theParab.SetFocal (aFocalLength);
|
|
|
|
return theReadData;
|
|
}
|
|
|
|
inline StdObjMgt_WriteData& operator <<
|
|
(StdObjMgt_WriteData& theWriteData, const gp_Parab& theParab)
|
|
{
|
|
const gp_Ax2& anAx = theParab.Position();
|
|
Standard_Real aFocalLength = theParab.Focal();
|
|
theWriteData << anAx << aFocalLength;
|
|
return theWriteData;
|
|
}
|
|
|
|
|
|
#endif
|