mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-21 14:02:05 +08:00
96b637737b
* fix build warnings * cython fixes * cleanup transformations build * little more
19 lines
290 B
Cython
19 lines
290 B
Cython
# cython: language_level = 3
|
|
|
|
cdef class KF1D:
|
|
cdef public:
|
|
double x0_0
|
|
double x1_0
|
|
double K0_0
|
|
double K1_0
|
|
double A0_0
|
|
double A0_1
|
|
double A1_0
|
|
double A1_1
|
|
double C0_0
|
|
double C0_1
|
|
double A_K_0
|
|
double A_K_1
|
|
double A_K_2
|
|
double A_K_3
|