🎨 注释优化

This commit is contained in:
kercylan98
2023-06-20 11:17:23 +08:00
parent 686ab9de3a
commit 3e07449c87
4 changed files with 68 additions and 6 deletions
+1 -1
View File
@@ -147,6 +147,6 @@ func CalcAngleDifference[V generic.Number](angleA, angleB V) V {
a := t + V(pi)
b := V(pi) * 2
t = V(math.Floor(float64(a/b))) * b
t -= pi
t -= V(pi)
return t
}