openGJK/Cython/openGJK_cython.pyx

84 lines
1.8 KiB
Cython
Raw Normal View History

2020-05-18 16:54:28 -07:00
#cython: language_level=3, boundscheck=False
2020-05-19 17:46:42 -07:00
import numpy as np
from libc.stdlib cimport free, malloc
# Declare C function and data
2020-05-18 16:54:28 -07:00
cdef extern from "openGJK.h":
struct bd:
int numpoints
double s[3]
double** coord
struct simplex:
int nvrtx
double vrtx[4][3]
int wids[4]
double lambdas[4]
double gjk(bd bd1, bd bd2, simplex *s)
2020-05-19 17:46:42 -07:00
# Create Python function
2020-05-18 16:54:28 -07:00
def pygjk(bod1, bod2):
2020-05-19 17:46:42 -07:00
# Declare data types
2020-05-18 16:54:28 -07:00
cdef:
2020-05-19 17:46:42 -07:00
simplex s
2020-05-18 16:54:28 -07:00
bd bd1
bd bd2
int i, j
2020-05-19 09:44:27 -07:00
double answer
2020-05-18 16:54:28 -07:00
2020-05-19 17:46:42 -07:00
print("Break 1")#--------------------------------------------------
# Allocate memory for pointers
bd1.coord = <double**> malloc(sizeof(double)*bod1.ndim)
bd1.coord[0] = <double*> malloc(sizeof(double)*3)
bd2.coord = <double**> malloc(sizeof(double)*bod2.ndim)
bd2.coord[0] = <double*> malloc(sizeof(double)*3)
# Convert 1D array to 2D, if any
2020-05-19 09:44:27 -07:00
if bod1.ndim < 2:
bod1 = np.append([bod1], [[1.,1.,1.]], axis = 0)
if bod2.ndim < 2:
bod2 = np.append([bod2], [[1.,1.,1.]], axis = 0)
2020-05-18 16:54:28 -07:00
2020-05-19 09:44:27 -07:00
bd1.numpoints = np.size(bod1,0)
bd2.numpoints = np.size(bod2,0)
2020-05-19 17:46:42 -07:00
print("Break 2")#--------------------------------------------------
# Create numpy-array MemoryView
2020-05-19 09:44:27 -07:00
cdef:
2020-05-19 17:46:42 -07:00
double [:,:] narr1 = bod1
2020-05-19 09:44:27 -07:00
double [:,:] narr2 = bod2
2020-05-19 17:46:42 -07:00
print("Break 3")#--------------------------------------------------
# Assign coordinate values (Segmentation Fault Here!!, )
2020-05-18 16:54:28 -07:00
for i in range(0, bd1.numpoints):
2020-05-19 17:46:42 -07:00
bd1.coord[i][0] = narr1[i,0]
bd1.coord[i][1] = narr1[i,1]
bd1.coord[i][2] = narr1[i,2]
2020-05-19 09:44:27 -07:00
2020-05-18 16:54:28 -07:00
for j in range(0, bd2.numpoints):
2020-05-19 17:46:42 -07:00
bd2.coord[j][0] = narr2[j,0]
bd2.coord[j][1] = narr2[j,1]
bd2.coord[j][2] = narr2[j,2]
2020-05-19 09:44:27 -07:00
2020-05-19 17:46:42 -07:00
print("Break 4")#--------------------------------------------------
2020-05-18 16:54:28 -07:00
2020-05-19 17:46:42 -07:00
# Call C function
answer = gjk(bd1, bd2, &s)
# Free the memory
2020-05-19 09:44:27 -07:00
free(bd1.coord)
free(bd2.coord)
2020-05-18 16:54:28 -07:00
2020-05-19 09:44:27 -07:00
return answer
2020-05-18 16:54:28 -07:00