-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRealVector.cpp
executable file
·83 lines (64 loc) · 1.23 KB
/
RealVector.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// RealVector.cpp: implementation of the CRealVector class.
//
//////////////////////////////////////////////////////////////////////
#include "RealVector.h"
#include <math.h>
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CRealVector::CRealVector()
{
x=0;
y=0;
z=0;
}
CRealVector::~CRealVector()
{
}
CRealVector CRealVector::Add(CRealVector v2)
{
CRealVector v;
v.x=x+v2.x;
v.y=y+v2.y;
v.z=z+v2.z;
return v;
}
CRealVector CRealVector::Sub(CRealVector v2)
{
CRealVector v;
v.x=x-v2.x;
v.y=y-v2.y;
v.z=z-v2.z;
return v;
}
CRealVector CRealVector::operator=(CRealVector other)
{
x=other.x;
y=other.y;
z=other.z;
return *this;
}
CRealVector CRealVector::CrossProduct(CRealVector v2)
{
CRealVector v;
v.x=y*v2.z-z*v2.y;
v.y=z*v2.x-x*v2.z;
v.z=x*v2.y-y*v2.x;
return v;
}
double CRealVector::DotProduct(CRealVector v2)
{
return 0;
}
void CRealVector::Normalize()
{
double mod=sqrt(x*x+y*y+z*z);
x/=mod;
y/=mod;
z/=mod;
}