summaryrefslogtreecommitdiff
path: root/geometry/formulars.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'geometry/formulars.cpp')
-rw-r--r--geometry/formulars.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/geometry/formulars.cpp b/geometry/formulars.cpp
index e34b3c6..22e9e32 100644
--- a/geometry/formulars.cpp
+++ b/geometry/formulars.cpp
@@ -34,7 +34,7 @@ bool isCoplanar(pt a, pt b, pt c, pt d) {
return abs((b - a) * (c - a) * (d - a)) < EPS;
}
-// identifiziert winkel zwischen Vektoren u und v
+// charakterisiert winkel zwischen Vektoren u und v
pt uniqueAngle(pt u, pt v) {
pt tmp = v * conj(u);
ll g = abs(gcd(real(tmp), imag(tmp)));