// 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 #include #include #include #include //======================================================================= //function : AdvApp2Var_Node //purpose : //======================================================================= AdvApp2Var_Node::AdvApp2Var_Node() : myOrdInU(2), myOrdInV(2) { myTruePoints = new TColgp_HArray2OfPnt ( 0, 2, 0, 2); gp_Pnt P0(0.,0.,0.); myTruePoints->Init(P0); myErrors = new TColStd_HArray2OfReal( 0, 2, 0, 2); myErrors->Init(0.); } //======================================================================= //function : AdvApp2Var_Node //purpose : //======================================================================= AdvApp2Var_Node::AdvApp2Var_Node(const Standard_Integer iu, const Standard_Integer iv) : myOrdInU(iu), myOrdInV(iv) { myTruePoints = new TColgp_HArray2OfPnt ( 0, Max(0,iu), 0, Max(0,iv)); gp_Pnt P0(0.,0.,0.); myTruePoints->Init(P0); myErrors = new TColStd_HArray2OfReal( 0, Max(0,iu), 0, Max(0,iv)); myErrors->Init(0.); } //======================================================================= //function : AdvApp2Var_Node //purpose : //======================================================================= AdvApp2Var_Node::AdvApp2Var_Node(const gp_XY& UV, const Standard_Integer iu, const Standard_Integer iv) : myCoord(UV), myOrdInU(iu), myOrdInV(iv) { myTruePoints = new TColgp_HArray2OfPnt ( 0, iu, 0, iv); gp_Pnt P0(0.,0.,0.); myTruePoints->Init(P0); myErrors = new TColStd_HArray2OfReal( 0, iu, 0, iv); myErrors->Init(0.); } //======================================================================= //function : Coord //purpose : returns the coordinates (U,V) of the node //======================================================================= gp_XY AdvApp2Var_Node::Coord() const { return myCoord; } //======================================================================= //function : SetCoord //purpose : changes the coordinates (U,V) to (x1,x2) //======================================================================= void AdvApp2Var_Node::SetCoord(const Standard_Real x1, const Standard_Real x2) { myCoord.SetX(x1); myCoord.SetY(x2); } //======================================================================= //function : UOrder //purpose : returns the continuity order in U of the node //======================================================================= Standard_Integer AdvApp2Var_Node::UOrder() const { return myOrdInU; } //======================================================================= //function : VOrder //purpose : returns the continuity order in V of the node //======================================================================= Standard_Integer AdvApp2Var_Node::VOrder() const { return myOrdInV; } //======================================================================= //function : SetPoint //purpose : affects the value F(U,V) or its derivates on the node (U,V) //======================================================================= void AdvApp2Var_Node::SetPoint(const Standard_Integer iu, const Standard_Integer iv, const gp_Pnt& Pt) { myTruePoints->SetValue(iu, iv, Pt); } //======================================================================= //function : Point //purpose : returns the value F(U,V) or its derivates on the node (U,V) //======================================================================= gp_Pnt AdvApp2Var_Node::Point(const Standard_Integer iu, const Standard_Integer iv) const { return myTruePoints->Value(iu, iv); } //======================================================================= //function : SetError //purpose : affects the error between F(U,V) and its approximation //======================================================================= void AdvApp2Var_Node::SetError(const Standard_Integer iu, const Standard_Integer iv, const Standard_Real error) { myErrors->SetValue(iu, iv, error); } //======================================================================= //function : Error //purpose : returns the error between F(U,V) and its approximation //======================================================================= Standard_Real AdvApp2Var_Node::Error(const Standard_Integer iu, const Standard_Integer iv) const { return myErrors->Value(iu, iv); }