Skip to content

Commit

Permalink
remove unused VertexData structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jfranmatheu committed Feb 12, 2025
1 parent da0e9f4 commit f921424
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions retopoflow/cy/rfmesh_visibility.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ from cython.parallel cimport parallel, prange
ctypedef float real_t
ctypedef np.float32_t DTYPE_t

# Structure definitions
cdef struct VertexData:
float* positions
float* normals
int num_vertices

cdef inline real_t vec3_dot(const real_t* a, const real_t* b) noexcept nogil:
return a[0] * b[0] + a[1] * b[1] + a[2] * b[2]
Expand Down

0 comments on commit f921424

Please sign in to comment.