Skip to content
Snippets Groups Projects
Commit bc527fe5 authored by terry-norbraten's avatar terry-norbraten
Browse files

quell NB warnings

parent 196ca21e
No related branches found
No related tags found
No related merge requests found
...@@ -16,21 +16,21 @@ public class X3dCoordinates { ...@@ -16,21 +16,21 @@ public class X3dCoordinates {
private double theta; private double theta;
public X3dCoordinates(double x, double y, double z, double phi, double psi, double theta) { public X3dCoordinates(double x, double y, double z, double phi, double psi, double theta) {
this.setX(x); X3dCoordinates.this.setX(x);
this.setY(y); X3dCoordinates.this.setY(y);
this.setZ(z); X3dCoordinates.this.setZ(z);
this.setPhi(phi); X3dCoordinates.this.setPhi(phi);
this.setPsi(psi); X3dCoordinates.this.setPsi(psi);
this.setTheta(theta); X3dCoordinates.this.setTheta(theta);
} }
public X3dCoordinates() { public X3dCoordinates() {
this.setX(0.0); X3dCoordinates.this.setX(0.0);
this.setY(0.0); X3dCoordinates.this.setY(0.0);
this.setZ(0.0); X3dCoordinates.this.setZ(0.0);
this.setPhi(0.0); X3dCoordinates.this.setPhi(0.0);
this.setPsi(0.0); X3dCoordinates.this.setPsi(0.0);
this.setTheta(0.0); X3dCoordinates.this.setTheta(0.0);
} }
public double getPhi() { public double getPhi() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment