0031939: Coding - correction of spelling errors in comments [part 10]
[occt.git] / src / Standard / Standard_Real.hxx
CommitLineData
b311480e 1// Copyright (c) 1998-1999 Matra Datavision
973c2be1 2// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
b311480e 5//
d5f74e42 6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 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.
b311480e 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
b311480e 14
7fd59977 15#ifndef _Standard_Real_HeaderFile
16#define _Standard_Real_HeaderFile
17
d8d01f6e 18#include <cmath>
7fd59977 19#include <float.h>
ebc93ae7 20#include <Standard_values.h>
21#include <Standard_math.hxx>
7fd59977 22#include <Standard_TypeDef.hxx>
7fd59977 23
7fd59977 24// ===============================================
25// Methods from Standard_Entity class which are redefined:
26// - Hascode
27// - IsEqual
7fd59977 28// ===============================================
29
30// ==================================
316ea293 31// Methods implemented in Standard_Real.cxx
7fd59977 32// ==================================
2b2be3fb 33
34//! Computes a hash code for the given real, in the range [1, theUpperBound]
35//! @param theReal the real value which hash code is to be computed
36//! @param theUpperBound the upper bound of the range a computing hash code must be within
37//! @return a computed hash code, in the range [1, theUpperBound]
38Standard_EXPORT Standard_Integer HashCode (Standard_Real theReal, Standard_Integer theUpperBound);
7fd59977 39
68df8478 40Standard_EXPORT Standard_Real ACos (const Standard_Real );
41Standard_EXPORT Standard_Real ACosApprox (const Standard_Real );
42Standard_EXPORT Standard_Real ASin (const Standard_Real );
43Standard_EXPORT Standard_Real ATan2 (const Standard_Real , const Standard_Real );
44Standard_EXPORT Standard_Real NextAfter (const Standard_Real , const Standard_Real );
b0700466 45
46//! Returns |a| if b >= 0; -|a| if b < 0.
68df8478 47Standard_EXPORT Standard_Real Sign(const Standard_Real a, const Standard_Real b);
b0700466 48
68df8478 49Standard_EXPORT Standard_Real ATanh (const Standard_Real );
50Standard_EXPORT Standard_Real ACosh (const Standard_Real );
51Standard_EXPORT Standard_Real Sinh (const Standard_Real );
52Standard_EXPORT Standard_Real Cosh (const Standard_Real );
53Standard_EXPORT Standard_Real Log (const Standard_Real );
54Standard_EXPORT Standard_Real Sqrt (const Standard_Real );
7fd59977 55
7fd59977 56//-------------------------------------------------------------------
57// RealSmall : Returns the smallest positive real
58//-------------------------------------------------------------------
59inline Standard_Real RealSmall()
60{ return DBL_MIN; }
61
62//-------------------------------------------------------------------
63// Abs : Returns the absolute value of a real
64//-------------------------------------------------------------------
65inline Standard_Real Abs(const Standard_Real Value)
66{ return fabs(Value); }
67
68
69//-------------------------------------------------------------------
70// IsEqual : Returns Standard_True if two reals are equal
71//-------------------------------------------------------------------
72inline Standard_Boolean IsEqual (const Standard_Real Value1,
73 const Standard_Real Value2)
74{ return Abs((Value1 - Value2)) < RealSmall(); }
75
7fd59977 76 // *********************************** //
77 // Class methods //
78 // //
316ea293 79 // Machine-dependent values //
7fd59977 80 // Should be taken from include file //
81 // *********************************** //
82
83
84//-------------------------------------------------------------------
85// RealDigit : Returns the number of digits of precision in a real
86//-------------------------------------------------------------------
87inline Standard_Integer RealDigits()
88{ return DBL_DIG; }
89
90//-------------------------------------------------------------------
91// RealEpsilon : Returns the minimum positive real such that
92// 1.0 + x is not equal to 1.0
93//-------------------------------------------------------------------
94inline Standard_Real RealEpsilon()
95{ return DBL_EPSILON; }
96
97//-------------------------------------------------------------------
98// RealFirst : Returns the minimum negative value of a real
99//-------------------------------------------------------------------
100inline Standard_Real RealFirst()
101{ return -DBL_MAX; }
102
103//-------------------------------------------------------------------
104// RealFirst10Exp : Returns the minimum value of exponent(base 10) of
105// a real.
106//-------------------------------------------------------------------
107inline Standard_Integer RealFirst10Exp()
108{ return DBL_MIN_10_EXP; }
109
110//-------------------------------------------------------------------
111// RealLast : Returns the maximum value of a real
112//-------------------------------------------------------------------
113inline Standard_Real RealLast()
114{ return DBL_MAX; }
115
116//-------------------------------------------------------------------
117// RealLast10Exp : Returns the maximum value of exponent(base 10) of
118// a real.
119//-------------------------------------------------------------------
120inline Standard_Integer RealLast10Exp()
121{ return DBL_MAX_10_EXP; }
122
123//-------------------------------------------------------------------
124// RealMantissa : Returns the size in bits of the matissa part of a
125// real.
126//-------------------------------------------------------------------
127inline Standard_Integer RealMantissa()
128{ return DBL_MANT_DIG; }
129
130//-------------------------------------------------------------------
131// RealRadix : Returns the radix of exponent representation
132//-------------------------------------------------------------------
133inline Standard_Integer RealRadix()
134{ return FLT_RADIX; }
135
136//-------------------------------------------------------------------
137// RealSize : Returns the size in bits of an integer
138//-------------------------------------------------------------------
139inline Standard_Integer RealSize()
140{ return BITS(Standard_Real); }
141
142
143
144 //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=//
316ea293 145 // End of machine-dependent values //
7fd59977 146 //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=//
147
148
149//-------------------------------------------------------------------
150// IntToReal : Converts an integer in a real
151//-------------------------------------------------------------------
152inline Standard_Real IntToReal(const Standard_Integer Value)
153{ return Value; }
154
155//-------------------------------------------------------------------
156// ATan : Returns the value of the arc tangent of a real
157//-------------------------------------------------------------------
158inline Standard_Real ATan(const Standard_Real Value)
159{ return atan(Value); }
160
161
162//-------------------------------------------------------------------
163// Ceiling : Returns the smallest integer not less than a real
164//-------------------------------------------------------------------
165inline Standard_Real Ceiling (const Standard_Real Value)
166{ return ceil(Value); }
167
168//-------------------------------------------------------------------
169// Cos : Returns the cosine of a real
170//-------------------------------------------------------------------
171inline Standard_Real Cos (const Standard_Real Value)
172{ return cos(Value); }
173
7fd59977 174
175//-------------------------------------------------------------------
be53be81 176// Epsilon : The function returns absolute value of difference
177// between 'Value' and other nearest value of
178// Standard_Real type.
316ea293 179// Nearest value is chosen in direction of infinity
be53be81 180// the same sign as 'Value'.
181// If 'Value' is 0 then returns minimal positive value
182// of Standard_Real type.
7fd59977 183//-------------------------------------------------------------------
184inline Standard_Real Epsilon (const Standard_Real Value)
185{
186 Standard_Real aEpsilon;
187
188 if (Value>=0.0){
189 aEpsilon = NextAfter(Value, RealLast()) - Value;
190 } else {
191 aEpsilon = Value - NextAfter(Value, RealFirst());
192 }
193 return aEpsilon;
194}
195
196//-------------------------------------------------------------------
197// Exp : Returns the exponential function of a real
198//-------------------------------------------------------------------
199inline Standard_Real Exp (const Standard_Real Value)
200{ return exp(Value); }
201
202//-------------------------------------------------------------------
203// Floor : Return the largest integer not greater than a real
204//-------------------------------------------------------------------
205inline Standard_Real Floor (const Standard_Real Value)
206{ return floor(Value); }
207
208//-------------------------------------------------------------------
209// IntegerPart : Returns the integer part of a real
210//-------------------------------------------------------------------
211inline Standard_Real IntegerPart (const Standard_Real Value)
212{ return ( (Value>0) ? floor(Value) : ceil(Value) ); }
213
214
215//-------------------------------------------------------------------
216// Log10 : Returns the base-10 logarithm of a real
217//-------------------------------------------------------------------
218inline Standard_Real Log10 (const Standard_Real Value)
219{ return log10(Value); }
220
221//-------------------------------------------------------------------
222// Max : Returns the maximum value of two reals
223//-------------------------------------------------------------------
224inline Standard_Real Max (const Standard_Real Val1,
225 const Standard_Real Val2)
226{
227 return Val1 >= Val2 ? Val1 : Val2;
228}
229
230//-------------------------------------------------------------------
231// Min : Returns the minimum value of two reals
232//-------------------------------------------------------------------
233inline Standard_Real Min (const Standard_Real Val1,
234 const Standard_Real Val2)
235{
236 return Val1 <= Val2 ? Val1 : Val2;
237}
238
239//-------------------------------------------------------------------
240// Pow : Returns a real to a given power
241//-------------------------------------------------------------------
242inline Standard_Real Pow (const Standard_Real Value, const Standard_Real P)
243{ return pow(Value,P); }
244
245//-------------------------------------------------------------------
246// RealPart : Returns the fractional part of a real.
247//-------------------------------------------------------------------
248inline Standard_Real RealPart (const Standard_Real Value)
249{ return fabs(IntegerPart(Value) - Value); }
250
251//-------------------------------------------------------------------
252// RealToInt : Returns the real converted to nearest valid integer.
253// If input value is out of valid range for integers,
254// minimal or maximal possible integer is returned.
255//-------------------------------------------------------------------
256inline Standard_Integer RealToInt (const Standard_Real Value)
257{
258 // Note that on WNT under MS VC++ 8.0 conversion of double value less
259 // than INT_MIN or greater than INT_MAX to integer will cause signal
260 // "Floating point multiple trap" (OCC17861)
261 return Value < INT_MIN ? INT_MIN
262 : Value > INT_MAX ? INT_MAX
263 : (Standard_Integer)Value;
264}
265
b7cd4ba7 266// =======================================================================
267// function : RealToShortReal
268// purpose : Converts Standard_Real value to the nearest valid
269// Standard_ShortReal. If input value is out of valid range
270// for Standard_ShortReal, minimal or maximal
271// Standard_ShortReal is returned.
272// =======================================================================
273inline Standard_ShortReal RealToShortReal (const Standard_Real theVal)
274{
275 return theVal < -FLT_MAX ? -FLT_MAX
276 : theVal > FLT_MAX ? FLT_MAX
277 : (Standard_ShortReal)theVal;
278}
279
7fd59977 280//-------------------------------------------------------------------
281// Round : Returns the nearest integer of a real
282//-------------------------------------------------------------------
283inline Standard_Real Round (const Standard_Real Value)
284{ return IntegerPart(Value + (Value > 0 ? 0.5 : -0.5)); }
285
286//-------------------------------------------------------------------
287// Sin : Returns the sine of a real
288//-------------------------------------------------------------------
289inline Standard_Real Sin (const Standard_Real Value)
290{ return sin(Value); }
291
7fd59977 292
293//-------------------------------------------------------------------
294// ASinh : Returns the hyperbolic arc sine of a real
295//-------------------------------------------------------------------
ad779564 296inline Standard_Real ASinh(const Standard_Real Value)
297#if __QNX__
d8d01f6e 298{ return std::asinh(Value); }
299#else
7fd59977 300{ return asinh(Value); }
d8d01f6e 301#endif
7fd59977 302
303//-------------------------------------------------------------------
304// Square : Returns a real to the power 2
305//-------------------------------------------------------------------
306inline Standard_Real Square(const Standard_Real Value)
307{ return Value * Value; }
308
309//-------------------------------------------------------------------
310// Tan : Returns the tangent of a real
311//-------------------------------------------------------------------
312inline Standard_Real Tan (const Standard_Real Value)
313{ return tan(Value); }
314
315//-------------------------------------------------------------------
316// Tanh : Returns the hyperbolic tangent of a real
317//-------------------------------------------------------------------
318inline Standard_Real Tanh (const Standard_Real Value)
319{ return tanh(Value); }
320
321#endif