mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 14:43:57 +08:00
* fix build warnings
* cython fixes
* cleanup transformations build
* little more
old-commit-hash: 96b637737b
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
|