bugfix, part 3: Pod numbers now update correctly.

This commit is contained in:
Daniel_M_Williams 2015-06-08 18:22:19 -04:00
parent 8371876718
commit a3f3b3b3bb

View File

@ -147,7 +147,7 @@ public abstract class ExternalComponent extends RocketComponent implements Outsi
@Override
public double getAngularPosition() {
if (outside) {
if (this.isInline()) {
return 0.;
}
return this.position_angular_rad;
@ -160,7 +160,7 @@ public abstract class ExternalComponent extends RocketComponent implements Outsi
@Override
public double getRadialPosition() {
if (outside) {
if (this.isInline()) {
return 0.;
}
return this.position_radial_m;
@ -173,7 +173,7 @@ public abstract class ExternalComponent extends RocketComponent implements Outsi
@Override
public double getRotation() {
if (outside) {
if (this.isInline()) {
return 0.;
}
return this.rotation_rad;