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
4bba4b87
Commit
4bba4b87
authored
Nov 29, 2014
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pcbnew: Allows trapezoidal pads in zones.
parent
f4ca3d55
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
137 additions
and
75 deletions
+137
-75
board_items_to_polygon_shape_transform.cpp
pcbnew/board_items_to_polygon_shape_transform.cpp
+136
-70
zones_convert_brd_items_to_polygons_with_Boost.cpp
pcbnew/zones_convert_brd_items_to_polygons_with_Boost.cpp
+1
-5
No files found.
pcbnew/board_items_to_polygon_shape_transform.cpp
View file @
4bba4b87
This diff is collapsed.
Click to expand it.
pcbnew/zones_convert_brd_items_to_polygons_with_Boost.cpp
View file @
4bba4b87
...
...
@@ -249,11 +249,7 @@ void ZONE_CONTAINER::AddClearanceAreasPolygonsToPolysList( BOARD* aPcb )
continue
;
}
if
(
(
GetPadConnection
(
pad
)
==
PAD_NOT_IN_ZONE
)
||
(
pad
->
GetShape
()
==
PAD_TRAPEZOID
)
)
// PAD_TRAPEZOID shapes are not in zones because they are used in microwave apps
// and i think it is good that shapes are not changed by thermal pads or others
if
(
GetPadConnection
(
pad
)
==
PAD_NOT_IN_ZONE
)
{
int
gap
=
zone_clearance
;
int
thermalGap
=
GetThermalReliefGap
(
pad
);
...
...
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