开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Cota horizontal lines missing


 

Hello all!
Ive created gerber files for my board and found that the horizontal lines of the
cotas are missing.
Another thing i found is when printing that gerber it srhinks.
When plotting to postcript i also found that the vias (30/16mills) are not draw.
Je, just one more thing, when printing the board directly, if there are two
tracks joining forming an angle, at the joining appears some chuncks missing,
when looking in detail, i found that the tracks are printed as rectangles and
the little curve in the angle formed is not printed.


Besides this, i love kicad! ;) specially with gtk2.

Thanks all.

Saludos, Juan Pablo.


JPD Borgna
 

jpborgna@... wrote:

Hello all!
Ive created gerber files for my board and found that the horizontal lines of the
cotas are missing.
Another thing i found is when printing that gerber it srhinks.
When plotting to postcript i also found that the vias (30/16mills) are not draw.
Je, just one more thing, when printing the board directly, if there are two
tracks joining forming an angle, at the joining appears some chuncks missing,
when looking in detail, i found that the tracks are printed as rectangles and
the little curve in the angle formed is not printed.

I found in how-to-build-kicad.txt this:



Patch wxWidgets (wxGTK version)


patch for Arcs drawings
wxGTK-2.6.1/src/gtk/dcclient.cpp
line 604
if (m_pen.GetStyle() != wxTRANSPARENT)
{
gdk_draw_arc( m_window, m_penGC, FALSE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );

gdk_draw_line( m_window, m_penGC, xx1, yy1, xxc, yyc );
gdk_draw_line( m_window, m_penGC, xxc, yyc, xx2, yy2 );
}
must be
if (m_pen.GetStyle() != wxTRANSPARENT)
{
gdk_draw_arc( m_window, m_penGC, FALSE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );

if (m_brush.GetStyle() != wxTRANSPARENT)
{
gdk_draw_line( m_window, m_penGC, xx1, yy1, xxc, yyc );
gdk_draw_line( m_window, m_penGC, xxc, yyc, xx2, yy2 );
}
}

It solves the problem of the missing chunks of the corners.


Saludos, Juan Pablo.

Besides this, i love kicad! ;) specially with gtk2.

Thanks all.

Saludos, Juan Pablo.




Yahoo! Groups Links







--
Juan Pablo Daniel Borgna -- Tcnico Electrnico
INTI-Electrnica e Informtica
Direccin: Avenida General Paz 5445 entre Albarellos y Constituyentes
CC157 (CP B1650KNA) San Martn, Bs. As., Argentina TE:+(5411)4724-6200