Skip to content

Commit

Permalink
Remove stray print() statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Sep 26, 2023
1 parent 2bf913b commit 2ca3c12
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Sources/Mesh+Texcoords.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public extension Mesh {
let a = Angle.atan2(y: n.y, x: n.x)
let a2 = (a - cva).radians
if !n.angle(with: cvn).radians.isEqual(to: abs(a2), withPrecision: .pi) {
print(n.angle(with: cvn).radians, a2)
va = a2 > 0 ? a - .twoPi : a + .twoPi
} else {
va = a
Expand Down

0 comments on commit 2ca3c12

Please sign in to comment.