EasyEDA Std: assign nets to PCB circles and rects.
This commit is contained in:
parent
0fc3f20e4d
commit
9cca8e5970
|
@ -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" ) )
|
||||
|
|
Loading…
Reference in New Issue