mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-15 20:17:41 +08:00
Fixed -Wrestrict warning within OSD::SetSignal(). Fixed -Wdeprecated-copy warning by adding missing counterpart in pair copy constructor / assignment operator or by removing trivial constructor. AdvApp2Var_Node, AdvApp2Var_Patch are now declared as Handle. AdvApp2Var_Iso is now passed by Handle. Disabled operator= for TDF_Transaction and TDF_IDFilter. Standard.cxx - fixed GCC version mischeck causing building failure with experimental GCC versions. TopOpeBRepDS_EXPORT.cxx - fixed -Wmaybe-uninitialized warnings.
71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
// Created on: 1996-07-02
|
|
// Created by: Joelle CHAUVET
|
|
// Copyright (c) 1996-1999 Matra Datavision
|
|
// Copyright (c) 1999-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.
|
|
|
|
#include <AdvApp2Var_Node.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(AdvApp2Var_Node, Standard_Transient)
|
|
|
|
//=======================================================================
|
|
//function : AdvApp2Var_Node
|
|
//purpose :
|
|
//=======================================================================
|
|
AdvApp2Var_Node::AdvApp2Var_Node()
|
|
: myTruePoints(0, 2, 0, 2),
|
|
myErrors (0, 2, 0, 2),
|
|
myOrdInU (2),
|
|
myOrdInV (2)
|
|
{
|
|
gp_Pnt P0(0.,0.,0.);
|
|
myTruePoints.Init(P0);
|
|
myErrors.Init(0.);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AdvApp2Var_Node
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
AdvApp2Var_Node::AdvApp2Var_Node(const Standard_Integer iu,
|
|
const Standard_Integer iv)
|
|
: myTruePoints(0, Max(0,iu), 0, Max(0,iv)),
|
|
myErrors (0, Max(0,iu), 0, Max(0,iv)),
|
|
myOrdInU (iu),
|
|
myOrdInV (iv)
|
|
{
|
|
gp_Pnt P0(0.,0.,0.);
|
|
myTruePoints.Init(P0);
|
|
myErrors.Init(0.);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AdvApp2Var_Node
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
AdvApp2Var_Node::AdvApp2Var_Node(const gp_XY& UV,
|
|
const Standard_Integer iu,
|
|
const Standard_Integer iv)
|
|
: myTruePoints(0, iu, 0, iv),
|
|
myErrors (0, iu, 0, iv),
|
|
myCoord (UV),
|
|
myOrdInU(iu),
|
|
myOrdInV(iv)
|
|
{
|
|
gp_Pnt P0(0.,0.,0.);
|
|
myTruePoints.Init(P0);
|
|
myErrors.Init(0.);
|
|
}
|