recover pxd - good setup for library
parent
1c447f6f6e
commit
ea94e24da4
|
@ -1 +0,0 @@
|
|||
#error Do not use this file, it is the result of a failed Cython compilation.
|
|
@ -0,0 +1,14 @@
|
|||
# Declare C function and data types
|
||||
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)
|
Loading…
Reference in New Issue