summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/blimp/BlimpBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/tesseract/objects/blimp/BlimpBox.java')
-rw-r--r--src/tesseract/objects/blimp/BlimpBox.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tesseract/objects/blimp/BlimpBox.java b/src/tesseract/objects/blimp/BlimpBox.java
index 6d8b641..69c7808 100644
--- a/src/tesseract/objects/blimp/BlimpBox.java
+++ b/src/tesseract/objects/blimp/BlimpBox.java
@@ -63,12 +63,12 @@ public class BlimpBox extends PhysicalObject {
setShape(createShape());
previousPosition.set(position);
- if (inverseMass != 0) {
+ /*if (inverseMass != 0) {
inverseInertiaTensor.m00 = 1f / 12 / inverseMass * (height * height + depth * depth);
inverseInertiaTensor.m11 = 1f / 12 / inverseMass * (width * width + depth * depth);
inverseInertiaTensor.m22 = 1f / 12 / inverseMass * (width * width + height * height);
inverseInertiaTensor.invert();
- }
+ }*/
updateTransformGroup();
}