Usually the axis in a 3d plot form a right system, in the mathematical sense. For some plots I would like to reverse an axis, usually the y-axis, so that the data is actually plotted as if a mirror transformation would have been done on the hyper-plane {y = 0}. How could that be done most easily? Can it done directly on the axis, by appropriate settings? Or do I really have to mirror the data?
I searched and found this post but it does not what I need, it just rotates the view, but does not orient the axis different. This get's closer but is buggy to as the labels are not properly attached to the axis ticks:
plotcube.Axes.YAxis.Scale(1.0, -1.0, 1.0) |> ignore
plotcube.Axes.YAxis.Translate(0.0, 1.0, 0.0) |> ignore
surface.Scale(1.0, -1.0, 1.0) |> ignore
In Matlab I would just do it that way.
Many thanks for a suggestion or solution.