File: rtmath.inline.cpp

package info (click to toggle)
robotour 3.1.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,596 kB
  • ctags: 2,972
  • sloc: cpp: 17,705; sh: 3,060; ansic: 2,778; makefile: 144
file content (42 lines) | stat: -rwxr-xr-x 916 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * rtmath.inline.cpp
 * 
 * Copyright (c) 2000-2004 by Florian Fischer (florianfischer@gmx.de)
 * and Martin Trautmann (martintrautmann@gmx.de) 
 * 
 * This file may be distributed and/or modified under the terms of the 
 * GNU General Public License version 2 as published by the Free Software 
 * Foundation. 
 * 
 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 * 
 */

/////////////// Inline member functions for class Math.

#ifndef __LRT_MATH_INLINE__
#define __LRT_MATH_INLINE__

namespace lrt {

inline int Math::max(int num1, int num2)
{
	return ((num1 > num2) ? num1 : num2);
}

inline int Math::min(int num1, int num2)
{
	return ((num1 < num2) ? num1: num2);
}

inline int Math::abs(int num)
{
	return ((num > 0) ? num : -num);
}

} // namespace


#endif