vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Math.h
Go to the documentation of this file.
1 /*
2  * VRECKO - Virtual reality engine
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License version 2.1, as published by the Free Software Foundation.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * Lesser General Public License for more details.
12  *
13  * Copyright (c) 2012 Martin Bezdeka <mbezdeka@mail.muni.cz>
14  *
15  */
16 #pragma once
17 #include "Export"
18 
19 namespace vreckoUtils
20 {
21 
22 class VRECKO_UTILS_EXPORT Math
23 {
24 public:
26  static int gcd(int a, int b);
28  static int lcm(int a, int b);
29 };
30 
31 }