[Kicad-developers] 3D viewer, VRML V1.0 support

2014-07-14 Thread Mário Luzeiro
Hello, I am new to kicad-developers. I am planning to do my first contribution: adding support to 3D Viewer to read VRML V1.0 files. It practically means that it will be possible to direct download parts in VRML format from the 3dContenteCentral.com website without any more middle conversion :)

Re: [Kicad-developers] 3D viewer, VRML V1.0 support

2014-07-14 Thread Mário Luzeiro
glm looks ok to start using. boost have more complex functions like: area calculation, intersetions, distances.. From: Maciej Sumiński [maciej.sumin...@cern.ch] Sent: 14 July 2014 21:47 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject

[Kicad-developers] can / where I have my own branch?

2014-07-16 Thread Mário Luzeiro
Hello, since I am new to kicad dev group, I have basic question: Can I have my own repository branch online and work on it? If yes, any one explain me how? Thanks in advance! Mario ___ Mailing list: https://launchpad.net/~kicad-developers Post to :

[Kicad-developers] whow to add new images to the project? any policy?

2014-07-19 Thread Mário Luzeiro
As part of my contribution to kicad source code, I would like to add a new image ex: 32x32 pixels. Lets say I want to use a image (png) in source code. Are there any policies to use / add new images to project? I saw what it looks like to use .cpp files to store the raw data of images. How can I

Re: [Kicad-developers] whow to add new images to the project? any policy?

2014-07-24 Thread Mário Luzeiro
format directly. Hope that it is alright. Thanks for the explanation about the svg icon process, so I know when If I need it. Mario Luzeiro From: jp charras [jp.char...@wanadoo.fr] Sent: 24 July 2014 11:18 To: Mário Luzeiro; kicad-developers

[Kicad-developers] Speed up building?

2014-07-25 Thread Mário Luzeiro
Hello, Is is possible speed up building (in linux) some how? (without to buy a faster computer) It looks it is not building using multiprocessor. Also, every small change, it will took a lot of time by the linker to do its business. I do believe the only way would be implement dynamic objects

[Kicad-developers] issue with sscanf %lf vs %f

2014-07-26 Thread Mário Luzeiro
Hi all, I notice that in my system, I have problems parsing data with actual %lf notation that kicad is using. I got warnings about it when it is building, complaining that it is expecting a double but it is parsing to float. So far, I only find this issue in pcbnew/legacy_plugin.cpp load3D

Re: [Kicad-developers] issue with sscanf %lf vs %f

2014-07-26 Thread Mário Luzeiro
Line 50 of 3d-viewer/3d_struct.h shows that the recipient data item is double. Could it be somebody changed line 50 from: double x, y, z; yes, myself :S sorry, I've now fixed it myself. I changed S3D_VERTEX to glm::vec3 so I can use the glm library functionalities. Do you have in mind any

[Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-29 Thread Mário Luzeiro
Hello all, Attached you will find my contribution to 3d-viewer. I hope that it can be incorporated in the trunk of KiCad development. This (not so simple) additions will give to KiCad a more “pro” look that was missing in the 3d-viewer. Have a look in the screen-shots attached to get an idea

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-29 Thread Mário Luzeiro
...@gmail.com] Sent: 29 July 2014 09:38 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] 3D-Viewer new rendering and contributions. VIva Mário, They look awesome. Thanks! One thing I just noticed immediately, and perhaps it was already so in the previous 3d viewer

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-29 Thread Mário Luzeiro
Hi Cirilo, As for disabling emission, specular reflection, and diffuse reflection, I would not do that. If the model looks ugly then people should fix the model. Breaking software to make ugly models look prettier is not a good thing. Maybe you can add an option so that you can disable

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-30 Thread Mário Luzeiro
From: jp charras [jp.char...@wanadoo.fr] Sent: 30 July 2014 11:43 To: Mário Luzeiro; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] 3D-Viewer new rendering and contributions. Le 28/07/2014 22:45, Mário Luzeiro a écrit : Hello all, Attached you will find

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-30 Thread Mário Luzeiro
on their parent node transformation. Send me any data you want I will try give it a look. Cheers, Mario Luzeiro From: Nick Østergaard [oe.n...@gmail.com] Sent: 30 July 2014 18:55 To: Tomasz Wlostowski Cc: Mário Luzeiro; kicad-developers@lists.launchpad.net

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-30 Thread Mário Luzeiro
I am not into the building in Mac OSX, but just quick looking in that function I notice that the first argument: (EDA_3D_CANVAS* glcanvas) is not used in the function so it can be removed. From: Kicad-developers

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-30 Thread Mário Luzeiro
To see this issue, just edit a 3d shape parameters of any footprint on a board. If you want an offset = 0.1 inch (easy to test with a DIP package), you need to enter 0.1/25.4 -- Jean-Pierre CHARRAS It looks like an issue, I will have a look on that. That was something I didn't test

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-30 Thread Mário Luzeiro
Hi Nick, would you mind to test it now with your (and another..) board? Special, If you have models with different rotations applied. I am still not sure if it is correctly implemented (or as same as the older viewer). Changes: Fix translation and rotation issues in 3d viewer render. (kicad

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-07-31 Thread Mário Luzeiro
Any suggestions on how this can be unified will be welcome. One option is to add a selection item to the VRML dialog to specify if the offset is mm or inch. With that option I can also implement a good IDF solution. - Cirilo I don't know how KiCad deals with unities. As a KiCad user I feel

Re: [Kicad-developers] 3D-Viewer new rendering and contributions.

2014-08-01 Thread Mário Luzeiro
What do the models look like in another 3D viewer which correctly renders normals? It's hard to tell with 3DViewer because it looks to me like every facet is rendered on both sides (but that may be correct - the surface may have the 'solid' attribute). If a facet were rendered only on 1

Re: [Kicad-developers] Segfault in X3D module parser (build 5041, did not happen in 5034) [PATCH]

2014-08-01 Thread Mário Luzeiro
Sorry I found that too last night but I didnt had time to upload a fix. Would you (merger masters) would like to update my path attached in the trunk? it fixes the X3D missing color issue and add some small fixes and improvements. It added the capability to parse diffuse color from x3d model and

Re: [Kicad-developers] Very inefficient loading of 3D models

2014-08-02 Thread Mário Luzeiro
Hi Andrew, You are right, it will be special noticeable for very large ( 10K faces) models. The major time consuming are now in normal calculation. The algorithm I had implemented IMO is good (probably can be optimized a little more) but it is a nature slow algorithm. (you can see lots of for

Re: [Kicad-developers] Very inefficient loading of 3D models

2014-08-02 Thread Mário Luzeiro
Zonenberg [azonenb...@drawersteak.com] Sent: 02 August 2014 20:14 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] Very inefficient loading of 3D models I think one of the easiest optimizations is to add some kind of application-wide cache in RAM

Re: [Kicad-developers] 3D modules path strange behaviour

2014-08-03 Thread Mário Luzeiro
Hi yann, I've reported that issue some time ago: https://bugs.launchpad.net/kicad/+bug/1343904 it says that a fix was commited. I didnt try it yet, but since you say you tested the latest one.. so probably is not full fixed yet. Mario From:

Re: [Kicad-developers] 3D modules path strange behaviour

2014-08-04 Thread Mário Luzeiro
As a kicad user I agree, I was missing also the feature to load 3D modules from the current project folder path. It looks it is not possible at moment. Also, I do believe that it is very hard to non expert linux/windows users to set that variables in the environment.. :/

Re: [Kicad-developers] [PATCH] Anti-aliasing for the 3D-Viewer

2014-08-04 Thread Mário Luzeiro
Committed, Thanks. Unfortunately, my graphic card does not support anti aliasing, and I am not able to test this enhancement. -- Jean-Pierre CHARRAS That will be a good oldschool test platform! ;) Thank you for your fast commits! Mario ___

Re: [Kicad-developers] compiler warning

2014-08-04 Thread Mário Luzeiro
Dick, here is my patch to the warnings in vrml_v2_modelparser.cpp From: Kicad-developers [kicad-developers-bounces+mrluzeiro=ua...@lists.launchpad.net] on behalf of Dick Hollenbeck [d...@softplc.com] Sent: 04 August 2014 17:30 To: KiCad Developers

Re: [Kicad-developers] [PATCH] Anti-aliasing for the 3D-Viewer

2014-08-04 Thread Mário Luzeiro
imp, why the AA is only supported in wx3? #if wxCHECK_VERSION( 3, 0, 0 ) ? MRL ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.launchpad.net Unsubscribe : https://launchpad.net/~kicad-developers More

Re: [Kicad-developers] [PATCH] Anti-aliasing for the 3D-Viewer

2014-08-04 Thread Mário Luzeiro
issue here.:/ MRL From: Martin Janitschke [i...@hannover.ccc.de] Sent: 04 August 2014 23:04 To: Mário Luzeiro; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] [PATCH] Anti-aliasing for the 3D-Viewer On 04.08.2014 22:45, Mário Luzeiro wrote

Re: [Kicad-developers] wishlist for 3D models

2014-08-08 Thread Mário Luzeiro
Hi Cirilo, I am afraid that I cannot give you good ideas. Probably a good source for you questions will be looking how the other software PCB cad packages are doing it ;) Also maybe check with some industry people how do they deal with this. Most of people I know that are using kicad are

Re: [Kicad-developers] New 3D Viewer options patch

2014-08-17 Thread Mário Luzeiro
. There are some ideas and things to try.. but I didn't have time for that at moment to improve it. Nice PCB by the way.. whatever it is doing ;) Mario Luzeiro From: Andrew Zonenberg [azonenb...@drawersteak.com] Sent: 17 August 2014 04:50 To: Mário Luzeiro Cc: kicad

Re: [Kicad-developers] New 3D Viewer options patch

2014-08-17 Thread Mário Luzeiro
. From: Andrew Zonenberg [azonenb...@drawersteak.com] Sent: 17 August 2014 05:20 To: Jason Whiteman Cc: Mário Luzeiro; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] New 3D Viewer options patch Possibly a bug in the order layers are drawn in? Alpha blending requires

Re: [Kicad-developers] New 3D Viewer options patch

2014-08-17 Thread Mário Luzeiro
That is a very very old issue for me :) I remember it for years.. When it happen, I have to open the dialog options (in the front icons) and then check or uncheck the 3D model so that will work. I didn't looked on that issue. From: Kicad-developers

[Kicad-developers] wxwidgets 3.0 issues?

2014-08-17 Thread Mário Luzeiro
It looks like my builder is now using wxwidgets 3.0 .. with (lots of) some random issues. Like the one attached the schematic is now wrongly presented / opened Also I found that now, key shortcuts are not working. Is that expected? I mean, should I continue build with wxwidgets 3.0 or revert

Re: [Kicad-developers] New 3D Viewer options patch

2014-08-18 Thread Mário Luzeiro
) are able to view in real time the 3D board while you are editing the traces on pcb board... that is a big goal to archive ;) Regards, MarioLuzeiro From: Andrew Zonenberg [azonenb...@drawersteak.com] Sent: 18 August 2014 10:59 To: Mário Luzeiro Cc: jp charras

Re: [Kicad-developers] New 3D Viewer options patch

2014-08-18 Thread Mário Luzeiro
). From: Nick Østergaard [oe.n...@gmail.com] Sent: 18 August 2014 12:23 To: Mário Luzeiro Cc: Andrew Zonenberg; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] New 3D Viewer options patch 2014-08-18 12:15 GMT+02:00 Mário Luzeiro mrluze...@ua.pt

[Kicad-developers] Eeschema issue: cannot load component from multi libraries with same component name

2014-08-18 Thread Mário Luzeiro
I found that if I have multiple libraries with same component names (notable ex: R, C, INDUCTOR .. ) I cannot select another component other than the one already cached (?). I mean, if I select a R from another library it will load the same R as already loaded in the schematic. I am not sure if

Re: [Kicad-developers] Eeschema issue: cannot load component from multi libraries with same component name

2014-08-18 Thread Mário Luzeiro
Hi Dick, Thanks for your explanations. This is fun, considering the years I am using kicad and only now find this situation :) I was right now checking the project files looking for the libraries and I have this scenario: main_project.pro - [eeschema/libraries] .. list of libraries

[Kicad-developers] FreeRouting project future and kicad?

2014-08-19 Thread Mário Luzeiro
I was trying to run the FreeRouting in KiCad and It is not working (I was running it some 5 weeks ago..) Then I found that sad litigation story:/ I really don't understand that companies and what they are afraid of :| Are already any plans / discussing how KiCad will deal with this situation?

Re: [Kicad-developers] Feature request: Extended BOM (Part, Footprint, etc.) management

2014-08-20 Thread Mário Luzeiro
Hi Oli, I have that similar situation all the time with small projects as well. Last time I have lots of pull-up / pull down 10K resistors.. then in the middle of the project I need a specific 12K5 bias-resistor. Then I changed all 10K to 12K5 :S I think the hardware developers call it BOM

Re: [Kicad-developers] Feature request: Extended BOM (Part, Footprint, etc.) management

2014-08-20 Thread Mário Luzeiro
Ya probably that will do it :S Editing the .sch in a text editor may also help.. Is it is curious when I am using KiCad as a software/user I forget about the capability to edit external files.. (as maybe most of the regular users will don't do it too.. )

Re: [Kicad-developers] Feature request: Extended BOM (Part, Footprint, etc.) management

2014-08-20 Thread Mário Luzeiro
It is already possible to assigned footprints in schematic. Le the other developers look on your requests that they will be in better position to understand it. From: Oliver Meier [h2obr...@gmail.com] Sent: 20 August 2014 16:26 To: Mário Luzeiro Subject

[Kicad-developers] Review and help on Non Plated TH - Mechanical to polygon conversion

2015-03-22 Thread Mário Luzeiro
Hi all, While working in 3D-Viewer, I found something that I am not sure if is an issue or feature. It seems that the Non plated TH PAD types are extracted the way you can see in the attached picture. I was expecting no copper at all, but some precision residues are left .. Anyone that

[Kicad-developers] Looking for a pcb kicad project to do tests and debug

2015-03-22 Thread Mário Luzeiro
Hello all, Does anyone have a test project (for pcbnew) that I can use to test and see several complex aspects in a board? Things like multi layers, complex edge cuts, different holes shapes and sizes, complex filling zones.. etc etc? Thanks. Mario Luzeiro

Re: [Kicad-developers] VRML export issue in zone filling

2015-03-22 Thread Mário Luzeiro
To: Mário Luzeiro Subject: Re: VRML export issue in zone filling HI Mario, I don't understand what could cause those fill problems. Have you used another viewer like 'view3dscene' to see if it is only a problem with the viewer? In the past there were problems with OpenGL operations near (0,0,n

[Kicad-developers] VRML export issue in zone filling

2015-03-22 Thread Mário Luzeiro
Hi Cirilo, while working in VRML model parser to import KiCad generated VRML files, I notice the issue attached. The zone filling is strange and parts are missing. Any idea why?! Regards, Mario Luzeiro___ Mailing list:

Re: [Kicad-developers] Wayne Stambaugh @ FOSDEM15 everything else...

2015-03-20 Thread Mário Luzeiro
Hi Nick, Thanks for your view! This is a very broad subject, I feel my self that I don't have the knowledge and understanding to point what should be a better way of go on this things.. I just want to rise this questions to open the conversation and hoping in the future something could be

Re: [Kicad-developers] request for comments:VRML assemblies

2015-03-21 Thread Mário Luzeiro
Hi Cirilo! I am precisely working on that this morning on the VRML2 parser side. I got a file from a user ( https://forum.kicad.info/t/vrml-file-dont-showing/713 ): ... Transform { rotation -1 2.22e-16 1.23e-32 3.14 translation 6.7749 -9.3555 -0.8 scale 2.54 2.54 2.54 children [

Re: [Kicad-developers] Wayne Stambaugh @ FOSDEM15 everything else...

2015-03-20 Thread Mário Luzeiro
In the user perspective, as I pointed before, is not just the content but the message and the way it is perceived in the other side. I've just found a post in kicad.info posted 5 days ago by a user, with one example that illustrate the perception and the first impression that someone got:

[Kicad-developers] fix proposal for the 3D shading issues.

2015-03-09 Thread Mário Luzeiro
Hello kicad developers! I submitted a patch to fix the current shading issues with some models. https://bugs.launchpad.net/kicad/+bug/1351618 https://bugs.launchpad.net/kicad/+bug/1351618/+attachment/4339230/+files/3d-viewer-shadding-improovements_issue1351618.patch This patch added an options

Re: [Kicad-developers] fix proposal for the 3D shading issues.

2015-03-11 Thread Mário Luzeiro
From: jp charras [jp.char...@wanadoo.fr] Sent: 10 March 2015 21:23 To: Mário Luzeiro; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] fix proposal for the 3D shading issues. I committed your patch; Thanks. I recently noticed an other issue, related to material, in demo ecc83

Re: [Kicad-developers] 3d viewer updates

2015-03-24 Thread Mário Luzeiro
Hi Jean-Pierre, and unsigned char* m_pixels; should be: unsigned char* m_Pixels; I am a little confused about this. I was checking with the coding style policy and this look different because there are no example case for m_* use. I checked in the source files and I can see in

Re: [Kicad-developers] help with bazaar

2015-03-25 Thread Mário Luzeiro
branch. Regards, Mario Luzeiro From: Kicad-developers [kicad-developers-bounces+mrluzeiro=ua...@lists.launchpad.net] on behalf of Mário Luzeiro [mrluze...@ua.pt] Sent: 25 March 2015 19:12 To: kicad-developers@lists.launchpad.net Subject: [Kicad-developers

[Kicad-developers] Failed to load shared library _pcbnew.kiface (error 0: the operation completed successfully.)

2015-03-26 Thread Mário Luzeiro
Hi all, I am testing KiCad building on Windows, and I am getting this error (just for pcbnew, the other modules are working fine): 13:23:34: Failed to load shared library 'C:\kicad\kicad\bin\_pcbnew.kiface' (error 0: the operation completed successfully.) 13:23:48: IO_ERROR: Fatal Installation

Re: [Kicad-developers] openGL mode is dizzy

2015-03-28 Thread Mário Luzeiro
Hi all, I was checking.. didn't find exactly but, I suppose it could be related with some includes in openGL. For example, @vertex_manager.h #define GLM_FORCE_RADIANS #include gal/opengl/glm/gtc/matrix_transform.hpp ... probably because pcbnew is include things from 3d-viewer (and it includes

Re: [Kicad-developers] openGL mode is dizzy

2015-03-28 Thread Mário Luzeiro
I've just updated to the latest NVIDIA driver and the issue is still there. Could it be that you messed something up while improving the 3D viewer stuff? I just work in 3d-viewer folder files. ... Are there any dependencies .h (GAL) from 3d-viewer ? This is used to work.. until something

Re: [Kicad-developers] openGL mode is dizzy

2015-03-29 Thread Mário Luzeiro
experience same thing or not.. Regards, Mario Luzeiro From: Maciej Sumiński [maciej.sumin...@cern.ch] Sent: 29 March 2015 16:33 To: Mário Luzeiro; Mathias Grimmberger; Nick Østergaard; jp.char...@wanadoo.fr Cc: KiCad Developers Subject: Re: [Kicad-developers

Re: [Kicad-developers] 3d-viewer future discussion

2015-03-30 Thread Mário Luzeiro
From: Nick Østergaard [oe.n...@gmail.com] Sent: 30 March 2015 00:18 To: Mário Luzeiro Cc: Wayne Stambaugh; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] 3d-viewer future discussion The 3d-viewer may not deal with / use proper CAD

Re: [Kicad-developers] 3d-viewer future discussion

2015-03-30 Thread Mário Luzeiro
Hi Cirilo, see below From: Cirilo Bernardo [cirilo.berna...@gmail.com] Sent: 30 March 2015 05:32 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] 3d-viewer future discussion To be able to introduce IDF models

Re: [Kicad-developers] openGL mode is dizzy

2015-03-30 Thread Mário Luzeiro
To: Mário Luzeiro; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] openGL mode is dizzy May I get the file that shows the problem? I have managed to recreate the issue with my PC, and it looks like it is repeatable per board, so maybe I have just missed something. Regards, Orson

[Kicad-developers] Language Portuguese Flag

2015-03-31 Thread Mário Luzeiro
Hello, I just notice that the flag for Portuguese language is the Brazilian flag. It's not the fact that I am Portuguese and I don't have nothing against Brazil :) ... but that is the same as having the USA flag (or Australian flag) for the English language :) (Or have the Mexican flag for

[Kicad-developers] GAL questions (with regarding 3d-viewer)

2015-04-01 Thread Mário Luzeiro
Hello Maciej, Tomasz, Torsten, all, I found that you are related with GAL development, I have some questions and discussion for you, hope you can help me make some things a bit clear. Some requests: - Would it be possible in a near future, to detach the glm library from GAL (folder) and maybe

Re: [Kicad-developers] openGL mode is dizzy

2015-03-29 Thread Mário Luzeiro
Luzeiro From: Mário Luzeiro Sent: 29 March 2015 01:35 To: Mathias Grimmberger; Nick Østergaard Cc: KiCad Developers Subject: RE: [Kicad-developers] openGL mode is dizzy Hi all, I was checking.. didn't find exactly but, I suppose it could be related with some

Re: [Kicad-developers] openGL mode is dizzy

2015-03-29 Thread Mário Luzeiro
. Any help from the GAL people? Mario Luzeiro From: Kicad-developers [kicad-developers-bounces+mrluzeiro=ua...@lists.launchpad.net] on behalf of Mário Luzeiro [mrluze...@ua.pt] Sent: 29 March 2015 08:57 To: Mathias Grimmberger; Nick Østergaard; jp.char

[Kicad-developers] 3d-viewer future discussion

2015-03-29 Thread Mário Luzeiro
Hello all, I am bringing here today some discussion about 3d-viewer future. Special I am looking for the 3d-viewer user opinions and for a technical opinion from GAL and Pcbnew developers. When I started my contributions to 3d-viewer, I noticed that it was a kicad's forgotten piece. I rewrite

Re: [Kicad-developers] 3d-viewer future discussion

2015-03-29 Thread Mário Luzeiro
Hi Cirilo, see below: From: Cirilo Bernardo [cirilo.berna...@gmail.com] Sent: 29 March 2015 23:55 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] 3d-viewer future discussion I think the 3D positioning

Re: [Kicad-developers] Looking for KiCad success stories

2015-03-26 Thread Mário Luzeiro
Hi Javier, Are you looking also for small individual, not so successful yet projects, but something that will look good (images) in a presentation? I can send my 3D renders and board assembly fotos! ;) Mario Luzeiro From: Kicad-developers

[Kicad-developers] Wayne Stambaugh @ FOSDEM15 everything else...

2015-03-19 Thread Mário Luzeiro
Hello all, I've just watched Wayne Stambaugh @ FOSDEM15 https://fosdem.org/2015/schedule/event/kicad/ https://video.fosdem.org/2015/devroom-electronic_design_automation/kicad.mp4 .. and I really appreciate it because I was missing that introduction and general view status of the KiCad

Re: [Kicad-developers] Failed to load shared library _pcbnew.kiface (error 0: the operation completed successfully.)

2015-03-26 Thread Mário Luzeiro
] Sent: 26 March 2015 15:50 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] Failed to load shared library _pcbnew.kiface (error 0: the operation completed successfully.) Are you completely sure that the exes and kifaces are in the same bin dir? Also does

Re: [Kicad-developers] [PATCH] S3D Mesh Smart Pointer

2015-04-13 Thread Mário Luzeiro
From: Cirilo Bernardo [cirilo.berna...@gmail.com] Sent: 13 April 2015 23:36 To: Mário Luzeiro Cc: Brian Sidebotham; KiCad Developers Subject: Re: [Kicad-developers] [PATCH] S3D Mesh Smart Pointer Hi Mario, The Coverity analysis tool is not so bad; even without

Re: [Kicad-developers] [PATCH] S3D Mesh Smart Pointer

2015-04-13 Thread Mário Luzeiro
Hi Brian, I was about to test it but I didn't since first I was trying to fix here an issue in my branch... I will later do it. I notice you (people here) start to perform code analysis with some tool (Coverity?) I don't have any experience in using or develop with a code analysis in mind,

Re: [Kicad-developers] [PATCH] S3D Mesh Smart Pointer

2015-04-14 Thread Mário Luzeiro
Integer handling issues Error handling issues Insecure data handling It gives an idea of the usually mistakes. Regards, Mario Luzeiro From: Mark Roszko [mark.ros...@gmail.com] Sent: 14 April 2015 04:58 To: Mário Luzeiro Cc: Cirilo Bernardo; KiCad Developers

Re: [Kicad-developers] [PATCH] S3D Mesh Smart Pointer

2015-04-14 Thread Mário Luzeiro
03:49 To: Mário Luzeiro Cc: Cirilo Bernardo; KiCad Developers Subject: Re: [Kicad-developers] [PATCH] S3D Mesh Smart Pointer In that case where can we have a look in the Coverity documentation? They do not provide a list or documentation on what they may throw. Perhaps in they do in commercial

Re: [Kicad-developers] Remove holes and bottleneck in 3d-viewer

2015-04-14 Thread Mário Luzeiro
Hello Jean-Pierre, What about apply the remove holes only to that 10 000 to 20 000 corners (I believe the remove holes will so create more corners..with the format of the hole..) and then render an outline with the approximation polygon.? It could work for via holes, not pad holes. Pad

Re: [Kicad-developers] [PATCH] S3D Mesh Smart Pointer

2015-04-14 Thread Mário Luzeiro
It's worth looking at the documentation for the smart pointer used: http://www.boost.org/doc/libs/1_57_0/libs/smart_ptr/shared_ptr.htm The last thing I want to do is make your life harder by confusing you, so please carry on asking questions if it still doesn't make sense for you. The 3D

Re: [Kicad-developers] Cache algorithms

2015-04-24 Thread Mário Luzeiro
On Wed, Apr 22, 2015 at 10:06:09PM +, Mário Luzeiro wrote: Does anyone where have some implementation that maybe added to KiCad project? Or any suggestion where / how can I choose one to add? An LRU cache can be implemented in different ways; boost suggest this: http://www.boost.org/doc/libs

[Kicad-developers] class STATUS_TEXT_REPORTER : public REPORTER

2015-04-26 Thread Mário Luzeiro
Hello Jean-Pierre, I notice your additions in 3d-viewer regarding the STATUS_TEXT_REPORTER Does we have in KiCad some mechanism to make something like a Log / console to report warnings and errors ? I was thinking something that will log warnings and errors (ie: in the parsers, etc..) and user

[Kicad-developers] Cache algorithms

2015-04-22 Thread Mário Luzeiro
Hello all, I was looking for some Cache algorithm. I plan to use it for caching 3d models for 3d-viewer (i.e. so it don't have to parse and compute same files all again for different pcbboards..etc *) I didn't find any in KiCad sources. (stl or boost don't have it AFAIK) I am special

Re: [Kicad-developers] PCB Layouting with OpenGL Mode: What I miss.

2015-04-29 Thread Mário Luzeiro
edition. Regards, Mario Luzeiro From: Maciej Sumiński [maciej.sumin...@cern.ch] Sent: 29 April 2015 11:58 To: Mário Luzeiro; KiCad Developers Subject: Re: [Kicad-developers] PCB Layouting with OpenGL Mode: What I miss. On 04/29/2015 11:50 AM, Mário Luzeiro

Re: [Kicad-developers] PCB Layouting with OpenGL Mode: What I miss.

2015-04-29 Thread Mário Luzeiro
2015 10:48 To: Mário Luzeiro; KiCad Developers Subject: Re: [Kicad-developers] PCB Layouting with OpenGL Mode: What I miss. On 04/29/2015 10:06 AM, Mário Luzeiro wrote: Hi all, I share same experience. OpenGL GAL keyboard user-interface is different from the default one. I have to spend a bit

Re: [Kicad-developers] PCB Layouting with OpenGL Mode: What I miss.

2015-04-29 Thread Mário Luzeiro
Hi all, I share same experience. OpenGL GAL keyboard user-interface is different from the default one. I have to spend a bit time always to upgrade my new keyboard mental map for that mode. Also not mentioned by Michael, editing a track is not eminently or there is no shortcut that is working

[Kicad-developers] help on winbuilder console output

2015-05-11 Thread Mário Luzeiro
Hello all, I am doing some tests using winbuilder to build kicad on windows, I notice that the console does not show any printfs or logs from kicad, any one know how can I make it work? Mario Luzeiro ___ Mailing list:

Re: [Kicad-developers] kicad main icons - minor improvements

2015-05-04 Thread Mário Luzeiro
Hi Fabrizio, Personally I feel confused with the icons on kicad. I will try to explain in words what my mind think while looking for the icons while is trying to decide the desired functionality and I will some ideas and suggestions: The pencil makes me confuse, so all first functionalities are

[Kicad-developers] render a layer to a image

2015-05-06 Thread Mário Luzeiro
Hello all, do we have any function in kicad that we can use to render some layer (i.e: edge cuts, coppers, silks, etc..) to a image (ex: wxImage) ? Regards, Mario Luzeiro ___ Mailing list: https://launchpad.net/~kicad-developers Post to :

[Kicad-developers] Plans for update Boost?

2015-05-17 Thread Mário Luzeiro
Hi all, I know that this was a recent topic here in the mailing list, but so, what are the plans about updating the boost library? I was looking for the boost::geometry and it is very outdated with current kicad version (1.54). Regards, Mario Luzeiro

Re: [Kicad-developers] Plans for update Boost?

2015-05-18 Thread Mário Luzeiro
Outdated, yes. Problem is, the bug we work around apparently isn't fixed in more recent versions. It hasn't even been fixed in 1.58 :( JP already tested it. It's been over two years since the original bug report. The Boost devs don't seem to be interested in fixing it. I was trying to

Re: [Kicad-developers] 8 years of kicad dev (gource video)

2015-05-19 Thread Mário Luzeiro
I didn't found my name! :/ .. need to watch again :P Thing that I learned from this video: boost is a monster! :O Why by the end of the video, the boost tree disappear ? Let me guess, because before the boost was really merged into all repository tree :O, now it is downloaded during build

[Kicad-developers] [PATCH] 3d-viewer updates and some fixes

2015-04-15 Thread Mário Luzeiro
Hello Jean-Pierre, Here is a new update I did to 3d-viewer, I appreciate if you can merge it. It fixes issues with transparencies in some models (material issues in VRML2 parser) If fixes some issues in filling zones normals. It fixes an issue with some models that have materials but didn't

[Kicad-developers] vrml_exporter vs 3d-viewer pcbboard polygon generation

2015-04-13 Thread Mário Luzeiro
Hello Cirilo, Lorenzo, Jean-Pierre, I was trying to understand a bit more how the pcbboard is converted into polygons. I found that vrml_exporter is doing it in a very different (but similar!) way as 3d-viewer (boost based implementation). The vrml_exporter based is implementation on gluTess

[Kicad-developers] Remove holes and bottleneck in 3d-viewer

2015-04-13 Thread Mário Luzeiro
Hi Jean-Pierre, As we know, one of the bottleneck in 3d-viewer is while exporting the pcbboard to polygons and then remove the holes from the fill zones. I was trying to understand the process of that and in the sources and see if we have room for improvement. // Draw copper zones.

Re: [Kicad-developers] Remove holes and bottleneck in 3d-viewer

2015-04-13 Thread Mário Luzeiro
.. but it can be faked somehow. What do you think? Regards, Mario Luzeiro From: jp charras [jp.char...@wanadoo.fr] Sent: 13 April 2015 16:14 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject: Re: Remove holes and bottleneck in 3d-viewer Le 13/04

[Kicad-developers] 3d-viewer Filling zones issue when not show holes

2015-04-12 Thread Mário Luzeiro
Hello Jean Pierre, I am facing an issue related with the filling zones in my development working branch. Then I build the main trunk version and there is something I would like to check with you since I believe you may did some fine tunning related with that filling zone code. The attached

Re: [Kicad-developers] Failed to load shared library _pcbnew.kiface (error 0: the operation completed successfully.)

2015-04-09 Thread Mário Luzeiro
Hi all, This is maybe related with win-builder, but just let you know that I had to add the following extra dlls in order to make _pcbnew.kicad to work on my windows build: libcrypto.dll libgcc_s_sjlj-1.dll libgomp-1.dll libssl.dll libstdc++-6.dll Thanks JP for the suggestion! Regards, Mario

[Kicad-developers] CMake question - update only one CMakeLists.txt

2015-04-18 Thread Mário Luzeiro
Hi all, I am playing a bit.. adding and removing files.. then I need to run cmake again in order to be able to run make Is it possible to run cmake just for the module (CMakeLists.txt) that we are changing? So it will not rebuild the project all again and only update that part? Thanks! Mario

Re: [Kicad-developers] CMake question - update only one CMakeLists.txt

2015-04-18 Thread Mário Luzeiro
From: Nick Østergaard [oe.n...@gmail.com] Sent: 18 April 2015 16:09 To: Mário Luzeiro Cc: kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] CMake question - update only one CMakeLists.txt Are you using make rebuild_cache? This seems to also be able to work in on module

[Kicad-developers] Destroy a frame

2015-04-18 Thread Mário Luzeiro
Hello all, I have a question regarding the following line 219 and 221 https://github.com/KiCad/kicad-source-mirror/blob/5f7268a17844068e9c2e96caf2f3771d29478754/3d-viewer/3d_frame.cpp#L219 216 void EDA_3D_FRAME::OnCloseWindow( wxCloseEvent Event ) 217 { 218 if( Parent() ) 219

Re: [Kicad-developers] 3D Scale settings

2015-06-02 Thread Mário Luzeiro
Hello all No need to change file format. .. I vote for this idea from JP. Also, we cannot assume that the scale form the models are just in mm or inch.. it could be anything. (mm, m, km, inchs, mils,... Xunities) so in the end, if the 3d model dont fit the component footprint, you have to

Re: [Kicad-developers] 3D model generation.

2015-06-09 Thread Mário Luzeiro
Hi all, Just an hint for who think in future to make new scripts, you can start explore more now the VRML2 transformation capabilities that the 3d-viewer/VRML2 offer. (tranlation, scale, rotation, def/use groups, def/use materials, .etc) It means that simpler scripts can be developed and not

Re: [Kicad-developers] 3D model generation.

2015-06-09 Thread Mário Luzeiro
: 09 June 2015 11:56 To: Mário Luzeiro; kicad-developers@lists.launchpad.net Subject: Re: [Kicad-developers] 3D model generation. Hi Mario, do you think it would be possible to add, for mechanical purposes, the option to export the plain pcb with bounding boxes of the vrml modules? that could

Re: [Kicad-developers] Clarification regarding D_PAD::TransformShapeWithClearanceToPolygon

2015-06-19 Thread Mário Luzeiro
:21 To: Mário Luzeiro; kicad-developers@lists.launchpad.net Subject: Re: Clarification regarding D_PAD::TransformShapeWithClearanceToPolygon Le 18/06/2015 22:53, Mário Luzeiro a écrit : Hello Jean-Pierre || all, @file board_items_to_polygon_shape_transform.cpp @function D_PAD

[Kicad-developers] Clarification regarding D_PAD::TransformShapeWithClearanceToPolygon

2015-06-18 Thread Mário Luzeiro
Hello Jean-Pierre || all, @file board_items_to_polygon_shape_transform.cpp @function D_PAD::TransformShapeWithClearanceToPolygon @line 613 https://github.com/KiCad/kicad-source-mirror/blob/0cab3e47ad8097db7b898b3cef2cf9b235318ca3/pcbnew/board_items_to_polygon_shape_transform.cpp#L613 Is that

Re: [Kicad-developers] Plugin plans (post-stable release)

2015-06-16 Thread Mário Luzeiro
From: Kicad-developers [kicad-developers-bounces+mrluzeiro=ua...@lists.launchpad.net] on behalf of Tomasz Wlostowski [tomasz.wlostow...@cern.ch] Sent: 16 June 2015 17:13 To: Wayne Stambaugh; kicad-developers@lists.launchpad.net Subject: Re:

  1   2   3   4   5   >