Skip to content

Commit

Permalink
3D View: Z axis fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmnet committed Oct 11, 2021
1 parent 4f5b15e commit 8e8bc71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void updateState(AnalysisDataModel model, double z_offset) {
// z_pos = model.getValue("ALTRE") * 100 ;


this.setTranslateY(z_pos < 0 ? 0 : z_pos*2);
this.setTranslateY(z_pos < 0 ? 0 : z_pos);
this.setTranslateZ(model.getValue("LPOSX")*100);


Expand Down

0 comments on commit 8e8bc71

Please sign in to comment.