Remove unused Quaternion Interpolators. RIP, I definitely hat fun Slerping with you!

This commit is contained in:
CrushedPixel
2015-07-21 11:49:26 +02:00
parent 21b02e7e80
commit 5bc26503a8
3 changed files with 0 additions and 146 deletions

View File

@@ -1,18 +0,0 @@
package eu.crushedpixel.replaymod.holders;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Quaternion {
private double w, x, y, z;
public double dotProduct(Quaternion other) {
return (this.getX() * other.getX() + this.getY() * other.getY() +
this.getZ() * other.getZ() + this.getW() * other.getW());
}
}