Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
608535f7
Commit
608535f7
authored
Aug 18, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pcbnew: solved minor bug in plot PS arcs were filled on silk screen layers
Libs update
parent
1e9a65f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
change_log.txt
change_log.txt
+1
-1
plotps.cpp
pcbnew/plotps.cpp
+2
-2
No files found.
change_log.txt
View file @
608535f7
...
@@ -8,7 +8,7 @@ email address.
...
@@ -8,7 +8,7 @@ email address.
2008-Aug-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
2008-Aug-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
================================================================================
+pcbnew:
+pcbnew:
bug solved: Horizontal Oblong pads holes have a bad T Code size.
bug solved: Horizontal Oblong pads holes have a bad T Code size
in the drill file
.
2008-Aug-15 UPDATE Jerry Jacobs <jerkejacobs@gmail.com>
2008-Aug-15 UPDATE Jerry Jacobs <jerkejacobs@gmail.com>
...
...
pcbnew/plotps.cpp
View file @
608535f7
...
@@ -543,8 +543,8 @@ void trace_1_pastille_OVALE_POST( wxPoint pos, wxSize size, int orient, int mode
...
@@ -543,8 +543,8 @@ void trace_1_pastille_OVALE_POST( wxPoint pos, wxSize size, int orient, int mode
rayon
=
1
;
rayon
=
1
;
if
(
rayon
<
w
)
if
(
rayon
<
w
)
w
=
rayon
;
w
=
rayon
;
PlotArcPS
(
wxPoint
(
pos
.
x
+
x1
,
pos
.
y
+
y1
),
-
orient
,
-
orient
+
1800
,
rayon
,
w
,
0
);
PlotArcPS
(
wxPoint
(
pos
.
x
+
x1
,
pos
.
y
+
y1
),
-
orient
,
-
orient
+
1800
,
rayon
,
0
,
w
);
PlotArcPS
(
wxPoint
(
pos
.
x
+
x0
,
pos
.
y
+
y0
),
-
orient
+
1800
,
-
orient
,
rayon
,
w
,
0
);
PlotArcPS
(
wxPoint
(
pos
.
x
+
x0
,
pos
.
y
+
y0
),
-
orient
+
1800
,
-
orient
,
rayon
,
0
,
w
);
x0
=
-
rayon
;
x0
=
-
rayon
;
y0
=
-
delta
/
2
;
y0
=
-
delta
/
2
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment