Skip to content

Commit

Permalink
Fix arc-tangent argument labels
Browse files Browse the repository at this point in the history
  • Loading branch information
filip-sakel committed Dec 27, 2022
1 parent b77929f commit 512933b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ final class ShapeRenderingTests: XCTestCase {
$0.move(to: points.dropLast().last!)

for i in points.indices.dropLast() {
$0.addArc(to: points[i + 1], tangent: points[i], radius: radius)
$0.addArc(tangent1End: points[i], tangent2End: points[i + 1], radius: radius)
}
}.stroke(arcColor)
}
Expand Down

0 comments on commit 512933b

Please sign in to comment.