added summerhack
[summerhack] / tools / curve_draw / vmath / vmath.inl
1 /*
2 This file is part of XRay, a photorealistic 3D rendering library.
3 Copyright (C) 2005 John Tsiombikas
4
5 XRay is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 XRay is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with XRay; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 */
19
20 /** 
21  * @file vmath.inl
22  * @author John Tsiombikas
23  * @date 28 June 2005
24  *
25  * vmath inline functions.
26  */
27
28 /** linear interpolation */
29 inline scalar_t lerp(scalar_t a, scalar_t b, scalar_t t) {
30         return a + (b - a) * t;
31 }
32
33 /** b-spline approximation */
34 inline scalar_t bspline(scalar_t a, scalar_t b, scalar_t c, scalar_t d, scalar_t t) {
35         return bspline(Vector4(a, b, c, d), t);
36 }
37
38 /** catmull-rom spline interpolation */
39 inline scalar_t catmull_rom_spline(scalar_t a, scalar_t b, scalar_t c, scalar_t d, scalar_t t) {
40         return catmull_rom_spline(Vector4(a, b, c, d), t);
41 }