我想在ILLinePlot中从上到下反转Y轴(从下降变为上升)。我的结果是这样的: 这是代码:
scene.Add(new ILPlotCube {
new ILLinePlot(ILMath.tosingle(ZDistance["1,0;:"]),
markerStyle: MarkerStyle.Dot)
});
如何扭转Y轴变得像这个数字?
答案 0 :(得分:0)
将绘图立方体绕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)
});
您可能需要进一步配置绘图轴。