Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/lib/math/vector.h @ 10158

Last change on this file since 10158 was 10158, checked in by tfahrni, 17 years ago

tried some new ideas for swarming and fixed a bug in Vector.h

File size: 7.1 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: Christian Meyer
13   co-programmer: ...
14*/
15
16/*!
17 * @file vector.h
18 * A basic 3D math framework
19 *
20 * Contains classes to handle vectors, lines, rotations and planes
21*/
22
23#ifndef __VECTOR_H_
24#define __VECTOR_H_
25
26#include <cmath>
27#include "compiler.h"
28//! PI the circle-constant
29#define PI 3.14159265359f
30
31
32//! this is a small and performant 3D vector
33typedef float sVec3D[3];
34
35
36//! 3D Vector
37/**
38        Class to handle 3D Vectors
39*/
40class Vector {
41 public:
42  Vector (float x, float y, float z) : x(x), y(y), z(z) {}  //!< assignment constructor
43  Vector () : x(0), y(0), z(0) {}
44
45  /** @param v: the Vecor to compare with this one @returns true, if the Vecors are the same, false otherwise */
46  inline bool operator== (const Vector& v) const { return (this->x==v.x&&this->y==v.y&&this->z==v.z)?true:false; };
47  /** @param v: the Vecor to compare with this one @returns true, if the Vecors are different, false otherwise */
48  inline bool operator!= (const Vector& v) const { return (this->x!=v.x||this->y!=v.y||this->z!=v.z)?true:false; };
49  /** @param index The index of the "array" @returns the x/y/z coordinate */
50  inline float operator[] (float index) const {if( index == 0) return this->x; if( index == 1) return this->y; if( index == 2) return this->z; }
51  /** @param v The vector to add @returns the addition between two vectors (this + v) */
52  inline Vector operator+ (const Vector& v) const { return Vector(x + v.x, y + v.y, z + v.z); };
53  /** @param v The vector to add @returns the addition between two vectors (this + v) */
54  inline Vector operator+ (const sVec3D& v) const { return Vector(x + v[0], y + v[1], z + v[2]); };
55  /** @param v The vector to add  @returns the addition between two vectors (this += v) */
56  inline const Vector& operator+= (const Vector& v) { this->x += v.x; this->y += v.y; this->z += v.z; return *this; };
57  /** @param v The vector to substract  @returns the substraction between two vectors (this - v) */
58  inline const Vector& operator+= (const sVec3D& v) { this->x += v[0]; this->y += v[1]; this->z += v[2]; return *this; };
59  /** @param v The vector to substract  @returns the substraction between two vectors (this - v) */
60  inline Vector operator- (const Vector& v) const { return Vector(x - v.x, y - v.y, z - v.z); }
61  /** @param v The vector to substract  @returns the substraction between two vectors (this - v) */
62  inline Vector operator- (const sVec3D& v) const { return Vector(x - v[0], y - v[1], z - v[2]); }
63  /** @param v The vector to substract  @returns the substraction between two vectors (this -= v) */
64  inline const Vector& operator-= (const Vector& v) { this->x -= v.x; this->y -= v.y; this->z -= v.z; return *this; };
65  /** @param v The vector to substract  @returns the substraction between two vectors (this -= v) */
66  inline const Vector& operator-= (const sVec3D& v) { this->x -= v[0]; this->y -= v[1]; this->z -= v[2]; return *this; };
67  /** @param v the second vector  @returns The dotProduct between two vector (this (dot) v) */
68  inline float operator* (const Vector& v) const { return x * v.x + y * v.y + z * v.z; };
69  /** @todo strange */
70  inline const Vector& operator*= (const Vector& v) { this->x *= v.x; this->y *= v.y; this->z *= v.z; return *this; };
71  /** @param f a factor to multiply the vector with @returns the vector multiplied by f (this * f) */
72  inline Vector operator* (float f) const { return Vector(x * f, y * f, z * f); };
73  /** @param f a factor to multiply the vector with @returns the vector multiplied by f (this *= f) */
74  inline const Vector& operator*= (float f) { this->x *= f; this->y *= f; this->z *= f; return *this; };
75  /** @param f a factor to divide the vector with @returns the vector divided by f (this / f) */
76  inline Vector operator/ (float f) const { return (unlikely(f == 0.0))?Vector(0,0,0):Vector(this->x / f, this->y / f, this->z / f); };
77  /** @param f a factor to divide the vector with @returns the vector divided by f (this /= f) */
78  inline const Vector& operator/= (float f) {if (unlikely(f == 0.0)) {this->x=0;this->y=0;this->z=0;} else {this->x /= f; this->y /= f; this->z /= f;} return *this; };
79  /**  copy constructor @todo (i do not know it this is faster) @param v the vector to assign to this vector. @returns the vector v */
80  inline const Vector& operator= (const Vector& v) { this->x = v.x; this->y = v.y; this->z = v.z; return *this; };
81  /** copy constructor* @param v the sVec3D to assign to this vector. @returns the vector v */
82  inline const Vector& operator= (const sVec3D& v) { this->x = v[0]; this->y = v[1]; this->z = v[2]; return *this; }
83  inline const Vector& operator= (const float* v) { this->x = v[0]; this->y = v[1]; this->z = v[2]; return *this; }
84  /** @param v: the other vector \return the dot product of the vectors */
85  float dot (const Vector& v) const { return x*v.x+y*v.y+z*v.z; };
86  /** @param v: the corss-product partner @returns the cross-product between this and v (this (x) v) */
87  inline Vector cross (const Vector& v) const { return Vector(y * v.z - z * v.y, z * v.x - x * v.z, x * v.y - y * v.x ); }
88  /** scales the this vector with v* @param v the vector to scale this with */
89  void scale(const Vector& v) {   x *= v.x;  y *= v.y; z *= v.z; };
90  /** @returns the length of the vector */
91  inline float len() const { return sqrt (x*x + y*y + z*z); }
92  /** normalizes the vector */
93  inline void normalize() { float l = len(); if( unlikely(l == 0.0))return; this->x=this->x/l; this->y=this->y/l; this->z=this->z/l; };
94  Vector getNormalized() const;
95  Vector abs();
96
97  /** @param toVec nears this Vector to... @param t how much to advance (0.0: not at all; 1.0: fully) */
98  inline void slerpTo(const Vector& toVec, float t) { *this + (toVec - *this) * t; };
99
100  /** @returns a Null Vector */
101  inline static const Vector& nullVector() { static Vector nullVector; return nullVector; }
102  void debug() const;
103
104 public:
105  float    x;     //!< The x Coordinate of the Vector.
106  float    y;     //!< The y Coordinate of the Vector.
107  float    z;     //!< The z Coordinate of the Vector.
108};
109
110/**
111 *  calculate the angle between two vectors in radiances
112 * @param v1: a vector
113 * @param v2: another vector
114 * @return the angle between the vectors in radians
115*/
116inline float angleRad (const Vector& v1, const Vector& v2) { return acos( v1 * v2 / (v1.len() * v2.len())); };
117/**
118 *  calculate the angle between two vectors in degrees
119 * @param v1: a vector
120 * @param v2: another vector
121 * @return the angle between the vectors in degrees
122*/
123inline float angleDeg (const Vector& v1, const Vector& v2) { return acos( v1 * v2 / (v1.len() * v2.len())) * 180/M_PI; };
124
125/** an easy way to create a Random Vector @param sideLength the length of the Vector (x not sqrt(x^2...)) */
126#define VECTOR_RAND(sideLength)  (Vector((float)rand()/RAND_MAX -.5, (float)rand()/RAND_MAX -.5, (float)rand()/RAND_MAX -.5) * sideLength)
127
128#endif /* __VECTOR_H_ */
129
Note: See TracBrowser for help on using the repository browser.