File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ The format of this changelog is based on
4
4
[ Keep a Changelog] ( https://keepachangelog.com/ ) , and this project adheres to
5
5
[ Semantic Versioning] ( https://semver.org/ ) .
6
6
7
+ ## Upcoming
8
+
9
+ ### Fixed
10
+
11
+ - ` launch! ` without rounding now has the correct gap behind the pad
12
+
7
13
## 1.0.0 (2025-02-27)
8
14
9
15
Initial release.
Original file line number Diff line number Diff line change @@ -1159,9 +1159,8 @@ function _launch!(p::Path{T}; kwargs...) where {T <: Coordinate}
1159
1159
for (a, b) in zip (args, styles)
1160
1160
! iszero (a) && straight! (p, a, b)
1161
1161
end
1162
- if ! iszero (extround)
1163
- terminate! (p; rounding= extround, initial= y)
1164
- end
1162
+
1163
+ terminate! (p; rounding= extround, initial= y)
1165
1164
1166
1165
return CPW (trace1, gap1)
1167
1166
end
Original file line number Diff line number Diff line change 629
629
launch! (pa) # terminate path with launcher
630
630
631
631
pa = Path (nm)
632
- sty = launch! (pa)
632
+ sty = launch! (pa; rounding = 0 nm )
633
633
@test Paths. gap (sty) === 6000.0 nm
634
634
@test Paths. trace (sty) === 10000.0 nm
635
+ @test pa[1 ]. sty isa Paths. CPWOpenTermination
635
636
636
637
pa = Path (μm)
637
638
sty = launch! (pa, trace1= 4.2 μm, gap1= 3801 nm)
You can’t perform that action at this time.
0 commit comments