Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/BLI_double3.hh')
-rw-r--r--source/blender/blenlib/BLI_double3.hh14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/blenlib/BLI_double3.hh b/source/blender/blenlib/BLI_double3.hh
index f783055590a..5b6204935d7 100644
--- a/source/blender/blenlib/BLI_double3.hh
+++ b/source/blender/blenlib/BLI_double3.hh
@@ -240,20 +240,6 @@ struct double3 {
}
static double3 cross_poly(Span<double3> poly);
-
- /* #orient3d gives the exact result, using multi-precision arithmetic when result
- * is close to zero. orient3d_fast just uses double arithmetic, so may be
- * wrong if the answer is very close to zero.
- * Similarly, for #insphere and #insphere_fast. */
- static int orient3d(const double3 &a, const double3 &b, const double3 &c, const double3 &d);
-
- static int orient3d_fast(const double3 &a, const double3 &b, const double3 &c, const double3 &d);
-
- static int insphere(
- const double3 &a, const double3 &b, const double3 &c, const double3 &d, const double3 &e);
-
- static int insphere_fast(
- const double3 &a, const double3 &b, const double3 &c, const double3 &d, const double3 &e);
};
} // namespace blender