From 4c0a75cbd42b851f5649e50030298d71cbe145a7 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Thu, 12 Oct 2023 06:01:54 +0300 Subject: [PATCH] Fix an assert in HPGL plotter. --- common/plotters/HPGL_plotter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/plotters/HPGL_plotter.cpp b/common/plotters/HPGL_plotter.cpp index d669053af9..4db8346d13 100644 --- a/common/plotters/HPGL_plotter.cpp +++ b/common/plotters/HPGL_plotter.cpp @@ -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 ) {