/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/contourpy/src/mpl2005.h
32 строки
836 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
#ifndef CONTOURPY_MPL_2005_H #define CONTOURPY_MPL_2005_H #include "contour_generator.h" #include "mpl2005_original.h" namespace contourpy { class Mpl2005ContourGenerator : public ContourGenerator { public: Mpl2005ContourGenerator( const CoordinateArray& x, const CoordinateArray& y, const CoordinateArray& z, const MaskArray& mask, index_t x_chunk_size, index_t y_chunk_size); ~Mpl2005ContourGenerator(); py::tuple filled(const double& lower_level, const double& upper_level); py::tuple get_chunk_count() const; // Return (y_chunk_count, x_chunk_count) py::tuple get_chunk_size() const; // Return (y_chunk_size, x_chunk_size) py::tuple lines(const double& level); private: CoordinateArray _x, _y, _z; Csite *_site; }; } // namespace contourpy #endif // CONTOURPY_MPL_2005_H