Skip to content
Snippets Groups Projects
Commit f4514f4e authored by sesteves's avatar sesteves
Browse files

minor

parent 749dc027
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ public class MultiLayerModel implements AtmosphericRefraction {
}
if (previousRefractionIndex > 0) {
theta2 = previousRefractionIndex * FastMath.sin(theta1) / entry.getValue();
theta2 = FastMath.asin(previousRefractionIndex * FastMath.sin(theta1) / entry.getValue());
// get current los
double a = FastMath.sqrt((1 - FastMath.pow(FastMath.cos(theta2), 2)) /
......
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