Graph 如何在ILNumerics中反转轴

Graph 如何在ILNumerics中反转轴,graph,plot,reverse,figure,ilnumerics,Graph,Plot,Reverse,Figure,Ilnumerics,我想反转伊利内普洛特的Y轴,从上到下,从下降到上升。我的结果是这样的: 代码如下: scene.Add(new ILPlotCube { new ILLinePlot(ILMath.tosingle(ZDistance["1,0;:"]), markerStyle: MarkerStyle.Dot) }); 如何将Y轴反转成这样的图形? 将绘图立方体绕X轴旋转1

我想反转伊利内普洛特的Y轴,从上到下,从下降到上升。我的结果是这样的: 代码如下:

            scene.Add(new ILPlotCube {
              new ILLinePlot(ILMath.tosingle(ZDistance["1,0;:"]),
                             markerStyle: MarkerStyle.Dot)
            });
如何将Y轴反转成这样的图形?
将绘图立方体绕X轴旋转180°:

ilPanel1.Scene.Add(new ILPlotCube {
    Children = {
        new ILLinePlot(ILSpecialData.sincos1Df(200,1)[":;0"].T)
    },
    Rotation = Matrix4.Rotation(new Vector3(1,0,0), ILMath.pif)
}); 

您可能需要进一步配置打印轴

是的,它起作用了。但我在Y轴上丢了标签。你知道怎么解决这个问题吗?