Closedown

This commit is contained in:
2015-12-02 09:05:23 +01:00
parent 8e909e9603
commit 8d9c34af0d

View File

@@ -399,8 +399,8 @@ public class Microscope extends Panel {
{
double omega = Math.toRadians((Double) ((Positionable)getDevice("omega")).getPosition());
double y = -offset * Math.sin(omega);
double z = offset * Math.cos(omega);
double z = offset * Math.sin(omega);
double y = offset * Math.cos(omega);
((Motor)getDevice("cy")).moveRelAsync(y);
((Motor)getDevice("cz")).moveRelAsync(z);
}