Skip to content

Commit

Permalink
Remove unused computation in StripAreaSink.changetrace
Browse files Browse the repository at this point in the history
  • Loading branch information
Huite committed Jun 18, 2024
1 parent 3f08241 commit 509014e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions timml/stripareasink.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,6 @@ def changetrace(
u = u1 * (1.0 + eps) # Go just beyond circle
else:
u = u2 * (1.0 + eps) # Go just beyond circle
x1 + u * (x2 - x1)
y1 + u * (y2 - y1)
xyzt1[2] + u * (xyzt2[2] - xyzt1[2])
xyztnew = xyzt1 + u * (xyzt2 - xyzt1)
return changed, terminate, xyztnew, message

0 comments on commit 509014e

Please sign in to comment.