CFx SDK Documentation  2023 SP0
GeTol.h
Go to the documentation of this file.
1 // Copyright (C) 2002-2017, Open Design Alliance (the "Alliance").
3 // All rights reserved.
4 //
5 // This software and its documentation and related materials are owned by
6 // the Alliance. The software may only be incorporated into application
7 // programs owned by members of the Alliance, subject to a signed
8 // Membership Agreement and Supplemental Software License Agreement with the
9 // Alliance. The structure and organization of this software are the valuable
10 // trade secrets of the Alliance and its suppliers. The software is also
11 // protected by copyright law and international treaty provisions. Application
12 // programs incorporating this software must include the following statement
13 // with their copyright notices:
14 //
15 // This application incorporates Teigha(R) software pursuant to a license
16 // agreement with Open Design Alliance.
17 // Teigha(R) Copyright (C) 2002-2017 by Open Design Alliance.
18 // All rights reserved.
19 //
20 // By use of this software, its documentation or related materials, you
21 // acknowledge and accept the above terms.
23 
24 
25 #ifndef OD_GETOL_H
26 #define OD_GETOL_H
28 #include "Ge/GeExport.h"
29 
30 #include "TD_PackPush.h"
31 
49 {
50 public:
51 
56  OdGeTol(double t = 1.e-10)
57  : m_vectorTol(t), m_pointTol(t)
58  {
59  }
60  OdGeTol(double t1, double t2)
61  : m_vectorTol(t2), m_pointTol(t1)
62  {
63  }
64 
68  double equalPoint() const
69  {
70  return m_pointTol;
71  }
72 
76  double equalVector() const
77  {
78  return m_vectorTol;
79  }
80 
86  void setEqualPoint(double val)
87  {
88  m_pointTol = val;
89  }
90 
96  void setEqualVector(double val)
97  {
98  m_vectorTol = val;
99  }
100 
101 private:
102  double m_vectorTol;
103  double m_pointTol;
104 };
105 
106 #include "TD_PackPop.h"
107 
108 #endif
109 
#define GE_TOOLKIT_EXPORT
Definition: GeExport.h:49
Definition: GeTol.h:49
double equalVector() const
Definition: GeTol.h:76
double equalPoint() const
Definition: GeTol.h:68
void setEqualPoint(double val)
Definition: GeTol.h:86
OdGeTol(double t1, double t2)
Definition: GeTol.h:60
void setEqualVector(double val)
Definition: GeTol.h:96
OdGeTol(double t=1.e-10)
Definition: GeTol.h:56