Skip to content

Commit

Permalink
Merge pull request #76 from skiptools/pathtranslation
Browse files Browse the repository at this point in the history
Fix bug in Path translation using CGAffineTransform
  • Loading branch information
aabewhite authored Oct 16, 2024
2 parents d01f376 + 32b743a commit 6500612
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/SkipUI/SkipUI/Graphics/Path.swift
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ extension CGAffineTransform {
return Matrix(floatArrayOf(
Float(a), Float(b), Float(0.0), Float(0.0),
Float(c), Float(d), Float(0.0), Float(0.0),
Float(tx), Float(ty), Float(1.0), Float(0.0),
Float(0.0), Float(0.0), Float(0.0), Float(1.0)
Float(0.0), Float(0.0), Float(1.0), Float(0.0),
Float(tx), Float(ty), Float(0.0), Float(1.0)
))
}
}
Expand Down

0 comments on commit 6500612

Please sign in to comment.