0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / AdvApp2Var / AdvApp2Var_Node.hxx
1 // Created on: 1996-04-09
2 // Created by: Joelle CHAUVET
3 // Copyright (c) 1996-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _AdvApp2Var_Node_HeaderFile
18 #define _AdvApp2Var_Node_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <gp_XY.hxx>
25 #include <Standard_Integer.hxx>
26 #include <TColgp_HArray2OfPnt.hxx>
27 #include <TColStd_HArray2OfReal.hxx>
28 #include <Standard_Real.hxx>
29 class gp_XY;
30 class gp_Pnt;
31
32
33
34 //! used to store constraints on a (Ui,Vj) point
35 class AdvApp2Var_Node 
36 {
37 public:
38
39   DEFINE_STANDARD_ALLOC
40
41   
42   Standard_EXPORT AdvApp2Var_Node();
43   
44   Standard_EXPORT AdvApp2Var_Node(const Standard_Integer iu, const Standard_Integer iv);
45   
46   Standard_EXPORT AdvApp2Var_Node(const gp_XY& UV, const Standard_Integer iu, const Standard_Integer iv);
47   
48   Standard_EXPORT gp_XY Coord() const;
49   
50   Standard_EXPORT void SetCoord (const Standard_Real x1, const Standard_Real x2);
51   
52   Standard_EXPORT Standard_Integer UOrder() const;
53   
54   Standard_EXPORT Standard_Integer VOrder() const;
55   
56   Standard_EXPORT void SetPoint (const Standard_Integer iu, const Standard_Integer iv, const gp_Pnt& Cte);
57   
58   Standard_EXPORT gp_Pnt Point (const Standard_Integer iu, const Standard_Integer iv) const;
59   
60   Standard_EXPORT void SetError (const Standard_Integer iu, const Standard_Integer iv, const Standard_Real error);
61   
62   Standard_EXPORT Standard_Real Error (const Standard_Integer iu, const Standard_Integer iv) const;
63
64
65
66
67 protected:
68
69
70
71
72
73 private:
74
75   
76   Standard_EXPORT AdvApp2Var_Node(const AdvApp2Var_Node& Other);
77
78
79   gp_XY myCoord;
80   Standard_Integer myOrdInU;
81   Standard_Integer myOrdInV;
82   Handle(TColgp_HArray2OfPnt) myTruePoints;
83   Handle(TColStd_HArray2OfReal) myErrors;
84
85
86 };
87
88
89
90
91
92
93
94 #endif // _AdvApp2Var_Node_HeaderFile