X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=draconx-ca.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=T/6diT/J085x5J73MmNc/QJEsyK/lF941VaPMdtbYgM=; b=gsb2LJc66QRdF3c9FnEjjF3CRqHItA7tFDPdnoKO8vIv5U4ETUDbzYz1pA1U3Z8oiY mqMNuWjoqsWAwalK3xudF788EyrAbekLeQCD8FRJcXsZvHFdLiq8Ej4fIX/M107NLGPz wiKOznaeXOIub9Zh1y1GNo1pE8b2nldQmvS+pu9wnJ4vjJRSqcXmIsDXNpvIc/XZxdFB KP2drlLdUEGQspo0zn+6C3cnS5l5ubD72JzEJ5k44efydIj0/OpDIjs4eB5a6FOfnQz6 3N4kiTDxxmCmt+oVILILQ+lmzKV4NXfI4sKHLMsLKp9rxfWTbTPexLRN8Op4EcRMJ7Ln mbtA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=T/6diT/J085x5J73MmNc/QJEsyK/lF941VaPMdtbYgM=; b=MZrynIGN7pd62vZYgKPz0SVYs/EinoZa5VtgPh8ZzeG8NekTBl7W2f40+71puAoTd0 oBO5dU0Ahr7Y4+qkgEl0g62Zn7cp/G+2i+QGYCd06o+euZ1ImIZ6+tO6DUoLEHEV+nUn /dLpXzLJH1QisuINZ2dzzO3QKFH0aYQuFMg4QWD2lOflpZ0Z1lguHJdml7Q1OVG14UUh MA8LyKIp0NIMQP2yHq7d70vb1T6KsuGxNamzIgRP0XysO4ADVJpbHIVmZSKk5CvrSRiM iNZIz/H9puvfw46vE9EfUrv3dq2PjeY2HxYgycAdD+AzldvDp8gxLVEOMXClnnqHiibt XaJw== X-Gm-Message-State: APjAAAUpf1QkyLH/sRwP2/q4p+7czUh7p+5m8yhVQV7v77SWl0Ba1u+K 4WIft7/TntxqRSVdjo6yLYmzEsx140i9XVD+OR6L7z1Kcl9U2Q== X-Google-Smtp-Source: APXvYqz5TI9hJtqf4vaD/Wmui+Nbl6riUuXi3PUPAYupMObBt9s7Z2EJVZLIvnFt7x8I7aO4fWnGJ33MrQv3eq663ik= X-Received: by 2002:a2e:86c1:: with SMTP id n1mr14734818ljj.162.1562703324884; Tue, 09 Jul 2019 13:15:24 -0700 (PDT) MIME-Version: 1.0 X-Originating-IP: [162.243.96.244] In-Reply-To: References: From: "Nick Bowler (nbowler AT draconx DOT ca) [via geda-user AT delorie DOT com]" Date: Tue, 9 Jul 2019 16:15:24 -0400 Message-ID: Subject: Re: [geda-user] Thermals and pins To: geda-user AT delorie DOT com Content-Type: text/plain; charset="UTF-8" Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 2019-07-09, Rob Butts wrote: > This is a very basic question. I have a ground plane on the bottom of a > board. I have several ground pins that I'd like to have the pin completely > connect to the ground plane and not via the thin four lines of a thermal. > Is there a way to do that? Or increase the thermal lines thickness? Yes: http://pcb.geda-project.org/pcb-4.2.0/pcb.html#SetThermal-Action SetThermal(Object|SelectedPins|SelectevVias|Selected, Style) Set the thermal (on the current layer) of pins or vias to the given style. Style = 0 means no thermal. Style = 1 has diagonal fingers with sharp edges. Style = 2 has horizontal and vertical fingers with sharp edges. Style = 3 is a solid connection to the plane. Style = 4 has diagonal fingers with rounded edges. Style = 5 has horizontal and vertical fingers with rounded edges. So selecting the relevant pins and running SetThermal(SelectedPins, 3) should do the trick. IIRC there is also a default binding which cycles through the thermal styles but I can never remember what it is. Cheers, Nick