CFx SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
GeTol.h
Go to the documentation of this file.
1
2// Copyright (C) 2002-2022, 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 Open Design Alliance software pursuant to a license
16// agreement with Open Design Alliance.
17// Open Design Alliance Copyright (C) 2002-2022 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{
50public:
51
57 OdGeTol(double t = 1.e-10)
58 : m_vectorTol(t), m_pointTol(t)
59 {
60 }
61
68 OdGeTol(double t1, double t2)
69 : m_vectorTol(t2), m_pointTol(t1)
70 {
71 }
72
76 double equalPoint() const
77 {
78 return m_pointTol;
79 }
80
84 double equalVector() const
85 {
86 return m_vectorTol;
87 }
88
94 void setEqualPoint(double val)
95 {
96 m_pointTol = val;
97 }
98
104 void setEqualVector(double val)
105 {
106 m_vectorTol = val;
107 }
108
109private:
110 double m_vectorTol;
111 double m_pointTol;
112};
113
114#include "TD_PackPop.h"
115
116#endif
117
#define GE_TOOLKIT_EXPORT
Definition: GeExport.h:49
Definition: GeTol.h:49
double equalVector() const
Definition: GeTol.h:84
double equalPoint() const
Definition: GeTol.h:76
void setEqualPoint(double val)
Definition: GeTol.h:94
OdGeTol(double t1, double t2)
Definition: GeTol.h:68
void setEqualVector(double val)
Definition: GeTol.h:104
OdGeTol(double t=1.e-10)
Definition: GeTol.h:57