|
20 | 20 | #include <iostream>
|
21 | 21 |
|
22 | 22 | static PyMethodDef fknmMethods[] = {
|
23 |
| - {"IK_GN", |
24 |
| - (PyCFunction)IK_GN, |
| 23 | + {"IK_GN_c", |
| 24 | + (PyCFunction)IK_GN_c, |
25 | 25 | METH_VARARGS,
|
26 | 26 | "Link"},
|
27 |
| - {"IK_NR", |
28 |
| - (PyCFunction)IK_NR, |
| 27 | + {"IK_NR_c", |
| 28 | + (PyCFunction)IK_NR_c, |
29 | 29 | METH_VARARGS,
|
30 | 30 | "Link"},
|
31 |
| - {"IK_LM_Chan", |
32 |
| - (PyCFunction)IK_LM_Chan, |
| 31 | + {"IK_LM_Chan_c", |
| 32 | + (PyCFunction)IK_LM_Chan_c, |
33 | 33 | METH_VARARGS,
|
34 | 34 | "Link"},
|
35 |
| - {"IK_LM_Wampler", |
36 |
| - (PyCFunction)IK_LM_Wampler, |
| 35 | + {"IK_LM_Wampler_c", |
| 36 | + (PyCFunction)IK_LM_Wampler_c, |
37 | 37 | METH_VARARGS,
|
38 | 38 | "Link"},
|
39 |
| - {"IK_LM_Sugihara", |
40 |
| - (PyCFunction)IK_LM_Sugihara, |
| 39 | + {"IK_LM_Sugihara_c", |
| 40 | + (PyCFunction)IK_LM_Sugihara_c, |
41 | 41 | METH_VARARGS,
|
42 | 42 | "Link"},
|
43 | 43 | {"Robot_link_T",
|
@@ -104,7 +104,7 @@ PyMODINIT_FUNC PyInit_fknm(void)
|
104 | 104 | extern "C"
|
105 | 105 | {
|
106 | 106 |
|
107 |
| - static PyObject *IK_GN(PyObject *self, PyObject *args) |
| 107 | + static PyObject *IK_GN_c(PyObject *self, PyObject *args) |
108 | 108 | {
|
109 | 109 | ETS *ets;
|
110 | 110 | npy_float64 *np_Tep, *np_ret, *np_q0, *np_we;
|
@@ -219,7 +219,7 @@ extern "C"
|
219 | 219 | return py_tup;
|
220 | 220 | }
|
221 | 221 |
|
222 |
| - static PyObject *IK_NR(PyObject *self, PyObject *args) |
| 222 | + static PyObject *IK_NR_c(PyObject *self, PyObject *args) |
223 | 223 | {
|
224 | 224 | ETS *ets;
|
225 | 225 | npy_float64 *np_Tep, *np_ret, *np_q0, *np_we;
|
@@ -334,7 +334,7 @@ extern "C"
|
334 | 334 | return py_tup;
|
335 | 335 | }
|
336 | 336 |
|
337 |
| - static PyObject *IK_LM_Chan(PyObject *self, PyObject *args) |
| 337 | + static PyObject *IK_LM_Chan_c(PyObject *self, PyObject *args) |
338 | 338 | {
|
339 | 339 | ETS *ets;
|
340 | 340 | npy_float64 *np_Tep, *np_ret, *np_q0, *np_we;
|
@@ -451,7 +451,7 @@ extern "C"
|
451 | 451 | return py_tup;
|
452 | 452 | }
|
453 | 453 |
|
454 |
| - static PyObject *IK_LM_Wampler(PyObject *self, PyObject *args) |
| 454 | + static PyObject *IK_LM_Wampler_c(PyObject *self, PyObject *args) |
455 | 455 | {
|
456 | 456 | ETS *ets;
|
457 | 457 | npy_float64 *np_Tep, *np_ret, *np_q0, *np_we;
|
@@ -568,7 +568,7 @@ extern "C"
|
568 | 568 | return py_tup;
|
569 | 569 | }
|
570 | 570 |
|
571 |
| - static PyObject *IK_LM_Sugihara(PyObject *self, PyObject *args) |
| 571 | + static PyObject *IK_LM_Sugihara_c(PyObject *self, PyObject *args) |
572 | 572 | {
|
573 | 573 | ETS *ets;
|
574 | 574 | npy_float64 *np_Tep, *np_ret, *np_q0, *np_we;
|
|
0 commit comments