-
Notifications
You must be signed in to change notification settings - Fork 0
/
vektor.js
94 lines (73 loc) · 1.64 KB
/
vektor.js
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
84
85
86
87
88
89
90
91
92
93
94
class PolarVektor{
constructor(f,r){
this.f = f;
this.r = r;
}
forgatott(f){
return new PolarVektor(this.f+f, this.r);
}
cartesian(){
let radf = to_radian(this.f);
return new Vektor(this.r*Math.cos(radf), this.r*Math.sin(radf));
}
}
function to_degree(radian){
return radian*180/Math.PI;
}
function to_radian(radian){
return radian*Math.PI/180;
}
class Vektor{
constructor(x,y){
this.x = x;
this.y = y;
}
static osszead(u,v){
return new Vektor(u.x+v.x, u.y+v.y);
}
hozzaad(that){
this.x+=that.x;
this.y+=that.y;
return this;
}
static kivon(u,v){
return new Vektor(u.x-v.x, u.y-v.y);
}
static ellentett(u){
return new Vektor(-u.x, -u.y);
}
static balraforgat90(u){
return new Vektor(-u.y, u.x);
}
static jobbraforgat90(u){
return new Vektor(u.y, -u.x);
}
static szamszoroz(u,a){
return new Vektor(u.x*a, u.y*a);
}
leosztja(a){
this.x/=a;
this.y/=a;
}
static szamoszt(u,a){
return new Vektor(u.x/a, u.y/a);
}
polar(){
return new PolarVektor(to_degree(Math.atan2(this.y,this.x)), this.hossz());
}
hossz(){
return Math.sqrt(this.hossznegyzet());
}
hossznegyzet(){
return this.x**2+this.y**2;
}
static forgatott(u, fok){
return u.polar().forgatott(fok).cartesian();
}
egysegvektora(){
return new Vektor(this.x/this.hossz(), this.y/this.hossz());
}
klon(){
return new Vektor(this.x, this.y);
}
}