mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:05:30 +00:00
SHAPE_LINE_CHAIN() ctor: ensure arc info exists before trying to add it
Fixes https://gitlab.com/kicad/code/kicad/-/issues/19419
This commit is contained in:
parent
cb70079f86
commit
f8ae28578f
@ -108,8 +108,14 @@ SHAPE_LINE_CHAIN::SHAPE_LINE_CHAIN( const Clipper2Lib::Path64& aPath,
|
||||
{
|
||||
Append( aPath[ii].x, aPath[ii].y );
|
||||
|
||||
m_shapes[ii].first = loadArc( aZValueBuffer[aPath[ii].z].m_FirstArcIdx );
|
||||
m_shapes[ii].second = loadArc( aZValueBuffer[aPath[ii].z].m_SecondArcIdx );
|
||||
// Add arc info (if exists)
|
||||
int idx_z = aPath[ii].z;
|
||||
|
||||
if( idx_z < 0 || idx_z >= (int)aZValueBuffer.size() )
|
||||
continue;
|
||||
|
||||
m_shapes[ii].first = loadArc( aZValueBuffer[idx_z].m_FirstArcIdx );
|
||||
m_shapes[ii].second = loadArc( aZValueBuffer[idx_z].m_SecondArcIdx );
|
||||
}
|
||||
|
||||
// Clipper shouldn't return duplicate contiguous points. if it did, these would be
|
||||
|
Loading…
Reference in New Issue
Block a user