]> Shamusworld >> Repos - architektonas/blob - src/vector.h
Misc. fixes & additions
[architektonas] / src / vector.h
1 //
2 // vector.h (Last modified: 6/28/2001)
3 //
4 // Various structures used for 3 dimensional imaging
5 //
6 // by James L. Hammons
7 // (C) 2001 Underground Software
8 //
9
10 #ifndef __VECTOR_H__
11 #define __VECTOR_H__
12
13 // What we'll do here is create the vector type and use typedef to alias Point to it. Yeah, that's it.
14
15 class Vector
16 {
17         public:
18                 Vector(double xx = 0, double yy = 0, double zz = 0);
19                 Vector(Vector tail, Vector head);               // Create vector from two points
20                 Vector operator=(Vector const v);
21                 Vector operator+(Vector const v);
22                 Vector operator-(Vector const v);
23                 Vector operator-(void);                                 // Unary negation
24                 Vector operator*(double const v);               // Vector times constant (double)
25                 Vector operator*(float const v);                // Vector times constant (float)
26                 Vector operator/(double const v);               // Vector divided by constant (double)
27                 Vector operator/(float const v);                // Vector divided by constant (float)
28                 Vector operator*(Vector const v);               // Vector product
29                 double Dot(Vector const v);                             // Dot product
30
31                 Vector& operator*=(double const v);             // Vector times constant self-assignment
32                 Vector& operator/=(double const v);             // Vector divided by constant self-assignment
33                 Vector& operator+=(Vector const v);             // Vector plus Vector self-assignment
34                 Vector& operator+=(double const v);             // Vector plus constant self-assignment
35                 Vector& operator-=(Vector const v);             // Vector minus Vector self-assignment
36                 Vector& operator-=(double const v);             // Vector minus constant self-assignment
37
38                 bool operator==(Vector const v);                // Check for equality
39                 bool operator!=(Vector const v);                // Check for inequality
40
41                 Vector Unit(void);
42                 double Magnitude(void);
43                 double Angle(void);
44                 bool isZero(double epsilon = 1e-6);
45
46                 // Class methods
47
48                 static double Dot(Vector v1, Vector v2);
49                 static double Magnitude(Vector v1, Vector v2);
50                 static double Parameter(Vector v1, Vector v2, Vector p);
51                 static Vector Normal(Vector v1, Vector v2);
52
53         public:
54                 double x, y, z;
55 };
56
57 typedef Vector Point;
58
59 #endif  // __VECTOR_H__