Re: [Kicad-developers] Rotated pads in PNS

2015-06-23 Thread Tomasz Wlostowski
On 23.06.2015 18:18, Chris Pavlina wrote: > On Tue, Jun 23, 2015 at 06:11:52PM +0200, Tomasz Wlostowski wrote: >> Chris, >> >> There is a patch by Mathias Grimberger (he sent it quite a bit of time >> ago), which I'm planning to integrate with P&S this week, along with >> other, IMHO more urgent bu

Re: [Kicad-developers] Rotated pads in PNS

2015-06-23 Thread Chris Pavlina
On Tue, Jun 23, 2015 at 06:11:52PM +0200, Tomasz Wlostowski wrote: > Chris, > > There is a patch by Mathias Grimberger (he sent it quite a bit of time > ago), which I'm planning to integrate with P&S this week, along with > other, IMHO more urgent bugfixes (e.g. assert failures). Excellent! I sta

Re: [Kicad-developers] Rotated pads in PNS

2015-06-23 Thread Tomasz Wlostowski
On 23.06.2015 18:04, Chris Pavlina wrote: > Any thoughts on this? > > pns_router.cpp:212: > else if( orient != 0.0 && orient != 180.0 ) > { > // rotated pads are replaced by for the moment by circles due to my > laziness ;) > solid->SetShape( new SHAPE_CIRCLE( c, std::max(

[Kicad-developers] Rotated pads in PNS

2015-06-23 Thread Chris Pavlina
Any thoughts on this? pns_router.cpp:212: else if( orient != 0.0 && orient != 180.0 ) { // rotated pads are replaced by for the moment by circles due to my laziness ;) solid->SetShape( new SHAPE_CIRCLE( c, std::max( sz.x, sz.y ) / 2 ) ); nonOrtho = true; } It