Problem with missing invert circle in postscript plc doc fixed

parent 5bfc7d38
......@@ -188,8 +188,10 @@ int FlowPscript::arc( double x, double y, double width, double height, int angle
double pi = 3.14159;
idx = MAX( 0.5, idx);
angle1 = angle1 % 360;
angle2 = angle2 % 360;
if ( abs(angle1) > 360)
angle1 = angle1 % 360;
if ( abs(angle2) > 360)
angle2 = angle2 % 360;
if ( type == flow_eDrawType_LineDashed)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment