blob: f18d5ef52ca77673d90281d00a0b9b6a1eab06d2 (
plain)
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
|
package rosegoldaddons.utils;
public class Rotation {
private float yaw;
private float pitch;
public Rotation(float yaw, float pitch) {
this.yaw = yaw;
this.pitch = pitch;
}
public float getYaw() {
return this.yaw;
}
public void setYaw(float yaw) {
this.yaw = yaw;
}
public float getPitch() {
return this.pitch;
}
public void setPitch(float pitch) {
this.pitch = pitch;
}
public void addYaw(float yaw) {
this.yaw += yaw;
}
public void addPitch(float pitch) {
this.pitch += pitch;
}
public float getValue() {
return Math.abs(this.yaw) + Math.abs(this.pitch);
}
public String toString() {
return "Rotation{yaw=" + this.yaw + ", pitch=" + this.pitch + '}';
}
}
|