/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/contourpy/src/z_interp.cpp
19 строк
357 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
#include "z_interp.h" #include <iostream> namespace contourpy { std::ostream &operator<<(std::ostream &os, const ZInterp& z_interp) { switch (z_interp) { case ZInterp::Linear: os << "Linear"; break; case ZInterp::Log: os << "Log"; break; } return os; } } // namespace contourpy