3dphotoshoot

annotate libs/vmath/vmath_types.h @ 10:c71c477521ca

converting to GLES2 and C++
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 31 May 2015 00:40:26 +0300
parents
children
rev   line source
nuclear@10 1 /*
nuclear@10 2 libvmath - a vector math library
nuclear@10 3 Copyright (C) 2004-2015 John Tsiombikas <nuclear@member.fsf.org>
nuclear@10 4
nuclear@10 5 This program is free software: you can redistribute it and/or modify
nuclear@10 6 it under the terms of the GNU Lesser General Public License as published
nuclear@10 7 by the Free Software Foundation, either version 3 of the License, or
nuclear@10 8 (at your option) any later version.
nuclear@10 9
nuclear@10 10 This program is distributed in the hope that it will be useful,
nuclear@10 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
nuclear@10 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
nuclear@10 13 GNU Lesser General Public License for more details.
nuclear@10 14
nuclear@10 15 You should have received a copy of the GNU Lesser General Public License
nuclear@10 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
nuclear@10 17 */
nuclear@10 18
nuclear@10 19 #ifndef VMATH_TYPES_H_
nuclear@10 20 #define VMATH_TYPES_H_
nuclear@10 21
nuclear@10 22 #include "vmath_config.h"
nuclear@10 23
nuclear@10 24 #define SMALL_NUMBER 1.e-4
nuclear@10 25 #define XSMALL_NUMBER 1.e-8
nuclear@10 26 #define ERROR_MARGIN 1.e-6
nuclear@10 27
nuclear@10 28
nuclear@10 29 #ifdef SINGLE_PRECISION_MATH
nuclear@10 30 typedef float scalar_t;
nuclear@10 31 #else
nuclear@10 32 typedef double scalar_t;
nuclear@10 33 #endif /* floating point precision */
nuclear@10 34
nuclear@10 35 /* vectors */
nuclear@10 36 typedef struct { scalar_t x, y; } vec2_t;
nuclear@10 37 typedef struct { scalar_t x, y, z; } vec3_t;
nuclear@10 38 typedef struct { scalar_t x, y, z, w; } vec4_t;
nuclear@10 39
nuclear@10 40 /* quaternions */
nuclear@10 41 typedef vec4_t quat_t;
nuclear@10 42
nuclear@10 43 /* matrices */
nuclear@10 44 typedef scalar_t mat3_t[3][3];
nuclear@10 45 typedef scalar_t mat4_t[4][4];
nuclear@10 46
nuclear@10 47
nuclear@10 48 #ifdef __cplusplus
nuclear@10 49 class Vector2;
nuclear@10 50 class Vector3;
nuclear@10 51 class Vector4;
nuclear@10 52 class Quaternion;
nuclear@10 53 class Matrix3x3;
nuclear@10 54 class Matrix4x4;
nuclear@10 55 class SphVector;
nuclear@10 56 #endif /* __cplusplus */
nuclear@10 57
nuclear@10 58 #endif /* VMATH_TYPES_H_ */