0025418: Debug output to be limited to OCC development environment
[occt.git] / src / math / math_FunctionSample.cxx
CommitLineData
b311480e 1// Copyright (c) 1997-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
0797d9d3 15//#ifndef OCCT_DEBUG
7fd59977 16#define No_Standard_RangeError
17#define No_Standard_OutOfRange
18#define No_Standard_DimensionError
19//#endif
20
21#include <math_FunctionSample.ixx>
22
23
24#include <Standard_OutOfRange.hxx>
25
26
b311480e 27math_FunctionSample::math_FunctionSample (const Standard_Real A,
7fd59977 28 const Standard_Real B,
29 const Standard_Integer N):
30 a(A),b(B),n(N)
31{
32}
33
34void math_FunctionSample::Bounds (Standard_Real& A, Standard_Real& B) const {
35
36 A=a;
37 B=b;
38}
39
40
41Standard_Integer math_FunctionSample::NbPoints () const {
42 return n;
43}
44
45
46Standard_Real math_FunctionSample::GetParameter (const Standard_Integer Index) const {
47 Standard_OutOfRange_Raise_if((Index <= 0)||(Index > n), " ");
48 return ((n-Index)*a+(Index-1)*b)/(n-1);
49}
50