EasyEDA Std: assign nets to PCB circles and rects.

This commit is contained in:
Alex Shvartzkop 2023-10-01 15:25:36 +03:00
parent 0fc3f20e4d
commit 9cca8e5970
1 changed files with 6 additions and 0 deletions

View File

@ -304,6 +304,9 @@ void PCB_EASYEDA_PARSER::ParseToBoardItemContainer(
shape->SetCenter( center );
shape->SetEnd( center + VECTOR2I( radius, 0 ) );
if( IsCopperLayer( layer ) )
shape->SetNet( getOrAddNetItem( arr[8] ) );
aContainer->Add( shape.release(), ADD_MODE::APPEND );
}
else if( elType == wxS( "RECT" ) )
@ -331,6 +334,9 @@ void PCB_EASYEDA_PARSER::ParseToBoardItemContainer(
shape->SetStart( start );
shape->SetEnd( start + size );
if( IsCopperLayer( layer ) )
shape->SetNet( getOrAddNetItem( arr[11] ) );
aContainer->Add( shape.release(), ADD_MODE::APPEND );
}
else if( elType == wxS( "ARC" ) )