🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
Plot.hpp
1
20
21#pragma once
22
23#include "AstGlobal.h"
24
25#ifdef AST_WITH_MATPLOT
26A_SUPPRESS_WARNINGS_BEGIN
27#include <matplot/matplot.h>
28A_SUPPRESS_WARNINGS_END
29#else
30#include "NoPlot.hpp"
31#endif
32
33AST_NAMESPACE_BEGIN
34
35#ifdef AST_WITH_MATPLOT
36namespace plt = matplot;
37#else
38namespace plt = noplot;
39#endif
40
41AST_NAMESPACE_END
空实现plot函数