Altium PCB import: pad thermal spoke angle is 90 deg by default.

(cherry picked from commit 11ba59b690)

Co-authored-by: Alex Shvartzkop <dudesuchamazing@gmail.com>
This commit is contained in:
dsa-t 2024-04-27 17:27:07 +00:00
parent 87f3d45109
commit 8edfc23679
1 changed files with 2 additions and 0 deletions

View File

@ -2287,6 +2287,7 @@ void ALTIUM_PCB::ConvertShapeBasedRegions6ToFootprintItemOnLayer( FOOTPRINT*
pad->SetKeepTopBottom( false ); // TODO: correct? This seems to be KiCad default on import
pad->SetAttribute( PAD_ATTRIB::SMD );
pad->SetShape( PAD_SHAPE::CUSTOM );
pad->SetThermalSpokeAngle( ANGLE_90 );
int anchorSize = 1;
VECTOR2I anchorPos = linechain.CPoint( 0 );
@ -2739,6 +2740,7 @@ void ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper( FOOTPRINT* aFootprint, con
pad->SetPosition( aElem.position );
pad->SetOrientationDegrees( aElem.direction );
pad->SetSize( aElem.topsize );
pad->SetThermalSpokeAngle( ANGLE_90 );
if( aElem.holesize == 0 )
{