Skip to content

Commit

Permalink
Add comment for bug that causes 'u' not to be displayed in preview, see
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewolff committed Apr 14, 2024
1 parent 566eecb commit e923d93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion path_intersection.go
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ func (p *Path) Settle(fillRule FillRule) *Path {
prev = j1 - 1
}
winding := 1
if !nodes[prev].p.CCW() {
if !nodes[prev].p.CCW() { // TODO: THIS IS WRONG but works usually (see fauxbold 'u' for DejaVu Sans)
winding = -1
}
// TODO: should switch winding if path B is oriented differently
Expand Down

0 comments on commit e923d93

Please sign in to comment.