summaryrefslogtreecommitdiffstats
path: root/src/line-geometry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/line-geometry.cpp')
-rw-r--r--src/line-geometry.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/line-geometry.cpp b/src/line-geometry.cpp
index 7b6ba0449..872e9ed6b 100644
--- a/src/line-geometry.cpp
+++ b/src/line-geometry.cpp
@@ -91,11 +91,6 @@ double Line::lambda (NR::Point const pt)
return lambda;
}
-inline static double determinant (NR::Point const &a, NR::Point const &b)
-{
- return (a[NR::X] * b[NR::Y] - a[NR::Y] * b[NR::X]);
-}
-
/* The coordinates of w with respect to the basis {v1, v2} */
std::pair<double, double> coordinates (NR::Point const &v1, NR::Point const &v2, NR::Point const &w)
{