Skip to content

Commit

Permalink
Fixed logic error segmenting air corridors.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeutch3 committed Dec 22, 2016
1 parent 9968b05 commit 0191235
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1789,7 +1789,7 @@ armyc2.c2sd.JavaRendererServer.RenderMultipoints.clsUtilityCPOF = {
break;
vincenty.EllipsoidGeodesic.interpolateUsingFraction(fraction,cartographic);
pt=new armyc2.c2sd.JavaLineArray.POINT2(cartographic.longitude*180.0/Math.PI,cartographic.latitude*180.0/Math.PI);
if(bolSegmentAC)
if(bolIsAC)
pt.style=-acWidth;
resultPts.add(pt);
if (hmap !== null && hmap.containsKey(j))
Expand Down

0 comments on commit 0191235

Please sign in to comment.