From 1efaf5af0ea8e2fd3a44e3cd333fef67e5c54400 Mon Sep 17 00:00:00 2001 From: jfranmatheu <45881831+jfranmatheu@users.noreply.github.com> Date: Thu, 6 Mar 2025 23:10:53 +0100 Subject: [PATCH] Cython: missing bVec3 struct --- retopoflow/cy/vector_utils.pxd | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/retopoflow/cy/vector_utils.pxd b/retopoflow/cy/vector_utils.pxd index 2f06d79b..ba4931b7 100644 --- a/retopoflow/cy/vector_utils.pxd +++ b/retopoflow/cy/vector_utils.pxd @@ -1,5 +1,12 @@ # distutils: language=c++ # cython: language_level=3 + +cdef struct bVec3: + bint x + bint y + bint z + + cdef float vec3_dot(const float* a, const float* b) noexcept nogil cdef void vec3_normalize(float* v) noexcept nogil