Fix an assert in HPGL plotter.

This commit is contained in:
Alex Shvartzkop 2023-10-12 06:01:54 +03:00
parent 3e82e59c24
commit 4c0a75cbd4
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ void HPGL_PLOTTER::Circle( const VECTOR2I& aCenter, int aDiameter, FILL_T aFill,
double const target_chord_length = m_arcTargetChordLength;
EDA_ANGLE chord_angle = ANGLE_360 * target_chord_length / circumf;
chord_angle = std::clamp( m_arcMinChordDegrees, chord_angle, ANGLE_45 );
chord_angle = std::clamp( chord_angle, m_arcMinChordDegrees, ANGLE_45 );
if( aFill == FILL_T::FILLED_SHAPE )
{