Re: [Kicad-developers] translation code rework

2016-09-13 Thread Wayne Stambaugh
On 9/11/2016 3:22 PM, Nick Østergaard wrote: > 2016-09-09 16:02 GMT+02:00 Wayne Stambaugh : >> On 9/7/2016 2:27 PM, Nick Østergaard wrote: >>> 2016-03-12 1:37 GMT+01:00 Simon Wells : As part of the translation code rework that i am working on (and

Re: [Kicad-developers] Bezier curves in DRAWSEGMENT class

2016-09-13 Thread Cirilo Bernardo
On Wed, Sep 14, 2016 at 9:19 AM, Tomasz Wlostowski < tomasz.wlostow...@cern.ch> wrote: > On 14.09.2016 00:00, Cirilo Bernardo wrote: > > I think it would be nice to support Bezier curves but aside from adding > > support for editing those curves, I think we need a good enough 2D > > geometry

Re: [Kicad-developers] [PATCH v2] Add KICAD_INSTALL_DEMOS CMake option

2016-09-13 Thread Wayne Stambaugh
Jose, Please use `git format-patch` for submitting patches. It makes it easier for me to merger your patches. Thanks, Wayne On 9/8/2016 2:59 PM, José Ignacio Romero wrote: > > It is ON by default, determines wether to install the bundled demos > and examples. > --- > > This version has the

[Kicad-developers] [PATCH] [Build] Remove redundant data in defines.

2016-09-13 Thread Niki Guldbrand
* Using CMAKE_INSTALL_PREFIX in KICAD_* install paths is redundant, because they are allready relative to CMAKE_INSTALL_PREFIX when no absolute path is given. Using an absolute path makes it harder to change the install path on the fly, without either rebuilding, or manually editing

Re: [Kicad-developers] Bezier curves in DRAWSEGMENT class

2016-09-13 Thread jp charras
Le 13/09/2016 à 11:36, Tomasz Wlostowski a écrit : > Hi all, > > Looking at the sources of the DRAWSEGMENT class (with the hopes of > refactoring it a bit to enable arbitrary copper shapes), I noticed that > it supports Bezier curves. They are also supported by the file format > parser/writer.

Re: [Kicad-developers] "Multichannel signed distance field" font rendering

2016-09-13 Thread Michael Steinberg
Hello all! Thank you very much for the feedback. As I understand the technique works well enough on many different hardware levels (I'm using it myself in an i5 iGPU), so that's good to know. I tweaked the character placement to get in accordance with what the truetype font specifies. Beside

Re: [Kicad-developers] Bezier curves in DRAWSEGMENT class

2016-09-13 Thread Nick Østergaard
It seems it has been there for long, there are only few mentions of it on the list while I have been subscribed, but I find: https://www.mail-archive.com/kicad-developers@lists.launchpad.net/msg20577.html https://lists.launchpad.net/kicad-developers/msg20046.html It does not really mention

Re: [Kicad-developers] announcing eeshow (schematics renderer and viewer)

2016-09-13 Thread Roman Pavelka
Tested on Fedora 24 on two bigger projects, no problems at all. Dependencies were installed by invoking: sudo dnf install gtk3-devel cairo-devel libgit2-devel transfig ImageMagick -- Roman Pavelka http://kmlinux.fjfi.cvut.cz/~pavelro1 ___ Mailing

[Kicad-developers] Bezier curves in DRAWSEGMENT class

2016-09-13 Thread Tomasz Wlostowski
Hi all, Looking at the sources of the DRAWSEGMENT class (with the hopes of refactoring it a bit to enable arbitrary copper shapes), I noticed that it supports Bezier curves. They are also supported by the file format parser/writer. There's however no drawing tool for these. Is this some outdated