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.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_double3.hh b/source/blender/blenlib/BLI_double3.hh
index 5f7b0f330b9..758ddd2edbe 100644
--- a/source/blender/blenlib/BLI_double3.hh
+++ b/source/blender/blenlib/BLI_double3.hh
@@ -61,8 +61,6 @@ struct double3 {
{
return &x;
}
-
- static double3 cross_poly(Span<double3> poly);
};
inline double normalize_and_get_length(double3 &a)
@@ -243,6 +241,8 @@ inline int dominant_axis(const double3 &a)
return ((x > y) ? ((x > z) ? 0 : 2) : ((y > z) ? 1 : 2));
}
+double3 cross_poly(Span<double3> poly);
+
} // namespace blender::math
namespace blender {