Skip to content

Commit

Permalink
Implemented hatch fill for the BBS symbols.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeutch3 committed Apr 5, 2017
1 parent ff8e26d commit 57f49bd
Showing 1 changed file with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1165,9 +1165,23 @@ protected static void buildHatchFills(TGLight tg, ArrayList<ShapeInfo>shapes)
Shape2 shape2=null;
int index=0;
if(JavaTacticalRenderer.clsUtility.isClosedPolygon(lineType)==false)
{
if(JavaTacticalRenderer.clsUtility.IsChange1Area(lineType, null)==false)
return;

{
//return;
switch(lineType)
{
case TacticalLines.PBS_CIRCLE:
case TacticalLines.PBS_ELLIPSE:
case TacticalLines.BBS_AREA:
case TacticalLines.BBS_LINE:
case TacticalLines.BBS_RECTANGLE:
break;
default:
return;
}
}
}
switch(lineType)
{
case TacticalLines.NFA:
Expand Down

0 comments on commit 57f49bd

Please sign in to comment.