0024428: Implementation of LGPL license
[occt.git] / src / BRepMesh / BRepMesh_FaceAttribute.lxx
1 // Created by: Ekaterina SMIRNOVA
2 // Copyright (c) 2008-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and / or modify it
7 // under the terms of the GNU Lesser General Public version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 inline Standard_Real& BRepMesh_FaceAttribute::GetDefFace()
16 {
17   return mydefface;
18 }
19
20 inline Standard_Real& BRepMesh_FaceAttribute::GetUMin()
21 {
22   return myumin;
23 }
24
25 inline Standard_Real& BRepMesh_FaceAttribute::GetVMin()
26 {
27   return myvmin;
28 }
29
30 inline Standard_Real& BRepMesh_FaceAttribute::GetUMax()
31 {
32   return myumax;
33 }
34
35 inline Standard_Real& BRepMesh_FaceAttribute::GetVMax()
36 {
37   return myvmax;
38 }
39
40 inline Standard_Real& BRepMesh_FaceAttribute::GetDeltaX()
41 {
42   return mydeltaX;
43 }
44
45 inline Standard_Real& BRepMesh_FaceAttribute::GetDeltaY()
46 {
47   return mydeltaY;
48 }
49
50 inline Standard_Real& BRepMesh_FaceAttribute::GetMinX()
51 {
52   return myminX;
53 }
54
55 inline Standard_Real& BRepMesh_FaceAttribute::GetMinY()
56 {
57   return myminY;
58 }
59
60 inline BRepMesh_ClassifierPtr& BRepMesh_FaceAttribute::GetClassifier()
61 {
62   return myclassifier;
63 }