/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/contourpy/src/z_interp.h
23 строки
455 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
#ifndef CONTOURPY_Z_INTERP_H #define CONTOURPY_Z_INTERP_H #include <iosfwd> #include <string> namespace contourpy { // Enum for type of interpolation used to find intersection of contour lines // with grid cell edges. // C++11 scoped enum, must be fully qualified to use. enum class ZInterp { Linear = 1, Log = 2 }; std::ostream &operator<<(std::ostream &os, const ZInterp& z_interp); } // namespace contourpy #endif // CONTOURPY_ZINTERP_H