mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-20 12:45:50 +03:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
91 lines
3.2 KiB
C++
91 lines
3.2 KiB
C++
// Created on: 2004-05-17
|
|
// Created by: Sergey ZARITCHNY
|
|
// Copyright (c) 2004-2014 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.
|
|
|
|
// modified 13.04.2009 Sergey ZARITCHNY
|
|
|
|
#include <BinMPrsStd_PositionDriver.hxx>
|
|
#include <BinObjMgt_Persistent.hxx>
|
|
#include <CDM_MessageDriver.hxx>
|
|
#include <gp_Pnt.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TDataXtd_Position.hxx>
|
|
#include <TDF_Attribute.hxx>
|
|
|
|
//=======================================================================
|
|
//function : BinMDataStd_PositionDriver
|
|
//purpose : Constructor
|
|
//=======================================================================
|
|
BinMPrsStd_PositionDriver::BinMPrsStd_PositionDriver
|
|
(const Handle(CDM_MessageDriver)& theMsgDriver)
|
|
: BinMDF_ADriver (theMsgDriver, STANDARD_TYPE(TDataXtd_Position)->Name())
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TDF_Attribute) BinMPrsStd_PositionDriver::NewEmpty() const
|
|
{
|
|
return new TDataXtd_Position();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : persistent -> transient (retrieve)
|
|
//=======================================================================
|
|
|
|
Standard_Boolean BinMPrsStd_PositionDriver::Paste
|
|
(const BinObjMgt_Persistent& theSource,
|
|
const Handle(TDF_Attribute)& theTarget,
|
|
BinObjMgt_RRelocationTable& ) const
|
|
{
|
|
Handle(TDataXtd_Position) anAtt = Handle(TDataXtd_Position)::DownCast(theTarget);
|
|
Standard_Real aValue;
|
|
Standard_Boolean ok = theSource >> aValue;
|
|
if (!ok) return ok;
|
|
gp_Pnt aPosition(0., 0., 0.);
|
|
aPosition.SetX(aValue);
|
|
|
|
ok = theSource >> aValue;
|
|
if (!ok) return ok;
|
|
aPosition.SetY(aValue);
|
|
|
|
ok = theSource >> aValue;
|
|
if (!ok) return ok;
|
|
aPosition.SetZ(aValue);
|
|
|
|
anAtt->SetPosition(aPosition);
|
|
|
|
return ok;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : transient -> persistent (store)
|
|
//=======================================================================
|
|
|
|
void BinMPrsStd_PositionDriver::Paste (const Handle(TDF_Attribute)& theSource,
|
|
BinObjMgt_Persistent& theTarget,
|
|
BinObjMgt_SRelocationTable& ) const
|
|
{
|
|
Handle(TDataXtd_Position) anAtt = Handle(TDataXtd_Position)::DownCast(theSource);
|
|
|
|
theTarget << anAtt->GetPosition().X();
|
|
theTarget << anAtt->GetPosition().Y();
|
|
theTarget << anAtt->GetPosition().Z();
|
|
}
|